Mend.io Vulnerability Database
The largest open source vulnerability database
What is a Vulnerability ID?
New vulnerability? Tell us about it!
CVE-2026-55982
Published:July 21, 2026
Updated:July 22, 2026
Summary The OIDC userinfo endpoint ("GET /login/oauth/userinfo") accepts Gitea API tokens as bearer credentials but does not enforce API token scopes before returning identity claims. A personal access token scoped only to "read:misc" can successfully retrieve user information from the OIDC userinfo endpoint, even though the same token is denied access to user-related REST API endpoints that enforce scope checks. As a result, identity information remains accessible through the OIDC endpoint regardless of the scopes assigned to the API token. Details Gitea supports scoped personal access tokens and enforces scope checks on user-related REST API endpoints. For example, a token scoped only to "read:misc" is denied access to endpoints such as: | Endpoint | Required Scope | |----------|----------------| | "GET /api/v1/user" | "read:user" | | "GET /api/v1/user/emails" | "read:user" | | "GET /api/v1/user/orgs" | "read:organization" | Requests to these endpoints return: 403 Forbidden with a scope-related error. However, the same "read:misc" token can be supplied as a bearer credential to: GET /login/oauth/userinfo Authorization: Bearer <token> and receives a successful response containing identity claims. Observed claims include: - "email" - "groups" The "groups" claim contains organization and team membership information associated with the authenticated user. This behavior indicates that the OIDC userinfo endpoint accepts API tokens but does not apply scope restrictions before returning identity claims. PoC PoC Details Proof-of-concept code: https://anonymous.4open.science/r/Gitea_PoC-EC93/3_poc_oidc_userinfo_scope_bypass Reproduction Steps 1. Create a personal access token with only the following scope: read:misc 2. Verify that the token cannot access user-related REST API endpoints: GET /api/v1/user GET /api/v1/user/emails GET /api/v1/user/orgs Each request returns: 403 Forbidden 3. Send the same token to the OIDC userinfo endpoint: GET /login/oauth/userinfo Authorization: Bearer <read-misc-token> 4. Observe that the request succeeds and returns identity claims, for example: { "email": "user@example.com", "groups": [ ... ] } Impact Holders of narrowly scoped API tokens can obtain identity information through the OIDC userinfo endpoint regardless of the scopes assigned to the token. The issue does not provide access to repositories, issues, pull requests, administrative functionality, or data belonging to other users. Impact is limited to disclosure of identity information associated with the authenticated user. However, it weakens the authorization boundary established by API token scopes because identity claims remain accessible even when the token lacks user- or organization-related scopes.
Affected Packages
https://github.com/go-gitea/gitea.git (GITHUB):
Affected version(s) >=v0.9.99 <v1.27.0
Fix Suggestion:
Update to version v1.27.0
gitea.dev (GO):
Affected version(s) >=v0.9.99 <v1.27.0
Fix Suggestion:
Update to version v1.27.0
Do you need more information?
Contact Us
CVSS v4
Base Score:
5.3
Attack Vector
NETWORK
Attack Complexity
LOW
Attack Requirements
NONE
Privileges Required
LOW
User Interaction
NONE
Vulnerable System Confidentiality
LOW
Vulnerable System Integrity
NONE
Vulnerable System Availability
NONE
Subsequent System Confidentiality
NONE
Subsequent System Integrity
NONE
Subsequent System Availability
NONE
CVSS v3
Base Score:
4.3
Attack Vector
NETWORK
Attack Complexity
LOW
Privileges Required
LOW
User Interaction
NONE
Scope
UNCHANGED
Confidentiality
LOW
Integrity
NONE
Availability
NONE
Weakness Type (CWE)
Exposure of Sensitive Information to an Unauthorized Actor