CVE-2026-28740: Gitea LFS object reuse bypasses Code-unit authorization

Published Jul 3, 2026
·
Updated

Summary

A user with Code write access to one repository may be able to associate an existing Git LFS object from a private source repository with their target repository, even when they do not have Code access to the source repository that currently owns the LFS object.

The issue appears to be caused by the source-object authorization check using broad repository accessibility instead of requiring Code-unit access to at least one repository that owns the requested LFS object.

Impact

This issue breaks the expected authorization boundary between repository units.

A user who does not have Code access to a private source repository should not be able to reuse or associate Git LFS objects owned by that repository. However, because the source-object accessibility check accepts broad repository access, non-Code access such as Issues access may be sufficient for the LFS object to be treated as accessible.

If the reused object becomes downloadable through the attacker-controlled target repository after metadata association, this can result in cross-repository Git LFS content disclosure.

The target repository write authorization is still enforced. The problem is specifically in the authorization decision for whether the source LFS object is accessible and may be reused.

Preconditions

The attacker needs:

an authenticated Gitea account; Code write access to a target repository; non-Code access, such as Issues access, to a private source repository; knowledge of an existing Git LFS object OID and size from the private source repository.

Affected Area

The issue affects the Git LFS upload/object reuse path.

Relevant paths:

text services/lfs/server.go

Relevant handlers:

text BatchHandler UploadHandler

Both paths can call:

go gitmodel.LFSObjectAccessible(ctx, ctx.Doer, p.Oid)

The helper is located in:

text models/git/lfs.go

The authorization check uses:

go repomodel.AccessibleRepositoryCondition(user, unit.TypeInvalid)

When unit.TypeInvalid is used, the repository access condition can include broad repository access, such as organization team membership through teamrepo and teamuser, without requiring that the user has access to the Code unit of the source repository.

By contrast, Code-specific repository access checks use a concrete unit type and include teamunit validation.

Validation

I reproduced this locally using Gitea's Go test harness.

Validated against commit:

text dac41a124fd34820a3c8caf3b3592ba62cd514ff

The PoC creates the following scenario:

1. The attacker has Code write access to the target repository. 2. The source repository is private. 3. The attacker does not have Code access to the source repository. 4. The attacker only has Issues access to the source repository through an organization team. 5. An LFS object exists in the source repository. 6. LFSObjectAccessible(ctx, attacker, oid) returns true. 7. NewLFSMetaObject(ctx, targetRepo.ID, pointer) successfully creates LFS metadata for the target repository.

Test result:

text === RUN TestLFSObjectAccessibleAllowsNonCodeSourceAccess --- PASS: TestLFSObjectAccessibleAllowsNonCodeSourceAccess PASS ok gitea.dev/models/git

No live instance was tested. Validation was performed only against a local test database.

Security Expectation

A user should not be allowed to reuse or associate an LFS object from a private source repository unless they have Code access to that source repository, or another permission level explicitly intended to grant access to repository file contents.

Non-Code permissions such as Issues access should not authorize access to Git LFS object content or allow Git LFS object reuse.

Suggested Fix

LFSObjectAccessible should require Code-unit access to at least one repository that owns the requested LFS object.

The check should avoid using unit.TypeInvalid for this source-object authorization decision. A Code-specific repository access condition should be used instead.

A regression test should cover:

private source repository; user has Issues-only access to the source repository; user does not have Code access to the source repository; user has Code write access to the target repository; known LFS object exists in the source repository; object reuse must be rejected unless the user has Code access to the source repository.

Suggested Severity

Suggested severity: Medium to High.

The severity depends on whether the associated LFS object becomes downloadable through the target repository after reuse.

If the object becomes downloadable through the target repository, the issue should be considered High because it can lead to cross-repository Git LFS content disclosure.

Suggested CVSS v3.1 if content disclosure is confirmed:

text CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:H/I:L/A:N

Rationale:

network reachable through Git LFS endpoints; requires authentication; requires knowledge of the LFS object OID and size; no user interaction required; breaks repository-level authorization expectations; primary impact is confidentiality of private Git LFS content; limited integrity impact through unauthorized LFS metadata association in the target repository.

Evidence

I can provide the local regression test and passing test log privately if needed.

Other sources

Gitea versions up to and including 1.26.2 allow Git LFS object reuse to authorize private source objects for users who have repository access but lack Code-unit access.

MITRE

Affected Software

2 affected componentsFixes available
Gitea Gitea<=1.26.2
go/gitea.dev<1.26.3
1.26.3

Remediation

Recommended actions to resolve this vulnerability, in priority order.

  1. Upgrade

    Upgrade go/gitea.dev to a version that resolves this vulnerability.

    Fixed in 1.26.3
  2. Upgrade

    Upgrade Gitea to a version that resolves this vulnerability.

    Fixed in 1.26.2
  3. Configuration

    Update the LFS source-object accessibility check so it does NOT use `unit.TypeInvalid` (which allows broad repository access such as Issues-only via team_repo/team_user). Specifically, make `LFSObjectAccessible(ctx, attacker, oid)` require Code-unit access to at least one repository that owns the requested LFS object before allowing Git LFS object reuse/association.

    Gitea Git LFS authorization (LFSObjectAccessible / AccessibleRepositoryCondition) source-object authorization decision = require Code-unit access (avoid unit.TypeInvalid for this decision)

Event History

Jul 3, 2026
CVE Published
via MITRE·08:19 PM
Data Sourced
via MITRE·08:19 PM
DescriptionSeverityWeakness
Data Sourced
via NVD·09:16 PM
DescriptionSeverityWeakness
Jul 21, 2026
Advisory Published
via GitHub·08:29 PM
Data Sourced
via GitHub·08:29 PM
DescriptionSeverityWeaknessAffected Software
Free Weekly Intel

Don't miss critical vulnerabilities

Join thousands of security professionals who receive our weekly digest of trending CVEs, zero-days, and exploited vulnerabilities.

No spam. Unsubscribe anytime.

Frequently Asked Questions

1

What is the severity of CVE-2026-28740?

The severity of CVE-2026-28740 is high with a score of 7.1.

2

How do I fix CVE-2026-28740?

To fix CVE-2026-28740, update Gitea to version 1.26.3 or later.

3

What does CVE-2026-28740 affect?

CVE-2026-28740 affects Gitea versions up to and including 1.26.2.

4

What kind of vulnerability is CVE-2026-28740?

CVE-2026-28740 is a vulnerability that allows LFS object reuse to bypass Code-unit authorization.

5

Who is impacted by CVE-2026-28740?

Users with repository access but lacking Code-unit access are impacted by CVE-2026-28740.

Contact

SecAlerts Pty Ltd.
132 Wickham Terrace
Fortitude Valley,
QLD 4006, Australia
info@secalerts.co
By using SecAlerts services, you agree to our services end-user license agreement. This website is safeguarded by reCAPTCHA and governed by the Google Privacy Policy and Terms of Service. All names, logos, and brands of products are owned by their respective owners, and any usage of these names, logos, and brands for identification purposes only does not imply endorsement. If you possess any content that requires removal, please get in touch with us.
© 2026 SecAlerts Pty Ltd.
ABN: 70 645 966 203, ACN: 645 966 203