---
id: CVE-2026-58417
aliases:
  - GHSA-jr5x-6h83-wrxf
title: >-
  Gitea: REST API exposes organization membership of private organizations to
  public
summary: >-
  Gitea: REST API exposes organization membership of private organizations to
  public
severity: medium
cwe:
  - CWE-200
  - CWE-863
vendor: gitea.dev
product: gitea.dev
ecosystem: go
affected:
  - gitea.dev < 1.27.0
patched:
  - gitea.dev 1.27.0
published: '2026-07-21'
updated: '2026-07-21'
source: GHSA
sourceUrl: 'https://github.com/advisories/GHSA-jr5x-6h83-wrxf'
references:
  - url: 'https://github.com/go-gitea/gitea/security/advisories/GHSA-jr5x-6h83-wrxf'
  - url: 'https://github.com/go-gitea/gitea/pull/38145'
  - url: >-
      https://github.com/go-gitea/gitea/commit/685b62c60fc595e3612a85f0895471876db56292
  - url: 'https://github.com/go-gitea/gitea/releases/tag/v1.27.0'
  - url: 'https://github.com/advisories/GHSA-jr5x-6h83-wrxf'
tags:
  - ghsa
  - go
ingestedAt: '2026-07-21T20:54:26.715Z'
epss: 0.00466
epssPercentile: 0.37702
---

## Overview

### Summary

The endpoint  "/orgs/{org}/public_members/{username}" + GET exposes organization membership of public members in a private organization.

### PoC

1. Spin up the nightly container of Gitea.
2. Perform the default installation.
3. Register a new user (let's call this user "user1").
4. Create a new organization with "private" visibility. We will refer to this organization as "user1org".
5. Make the user "user1" inside the organization visible.
6. Log out and register a new user ("user2").
7. Create an access token for "user2" with full access to the API.
8. Use the endpoint "/orgs/{org}/public_members/{username}" + GET with the correct username of "user1", organization name, and access token of "user2" to query whether "user1" is a member of the organization. The following curl command demonstrates the usage:

curl -X 'GET' \
  'http://localhost:4700/api/v1/orgs/user1org/public_members/user1' \
  -H 'accept: application/json' \
  -H 'authorization: token <user2-token>'

9. You will receive status code 204, which leaks the organization membership.

### Impact

The vulnerability discloses organization membership. An information that is not accessible via the web app (the organization is hidden, and therefore, the organization membership on the user's profile page is also hidden).

## Affected packages

- `gitea.dev < 1.27.0`

## Remediation

Upgrade to a patched release:

- `gitea.dev 1.27.0`
