CVEReports
CVEReports

Automated vulnerability intelligence platform. Comprehensive reports for high-severity CVEs generated by AI.

Product

  • Home
  • Sitemap
  • RSS Feed

Company

  • About
  • Contact
  • Privacy Policy
  • Terms of Service

© 2026 CVEReports. All rights reserved.

Made with love by Amit Schendel & Alon Barad



CVE-2026-20897

Unlock Everything: The Gitea LFS IDOR (CVE-2026-20897)

Amit Schendel
Amit Schendel
Senior Security Researcher

Jan 24, 2026·7 min read·56 visits

Executive Summary (TL;DR)

Gitea failed to scope Git LFS lock lookups to the specific repository requesting the deletion. By sending a request to a repository they control, an attacker can supply the Lock ID of a victim's repository. Gitea would verify permissions on the attacker's repo, but fetch and delete the victim's lock from the global database table. This allows for massive workflow disruption and potential binary file corruption.

A critical Insecure Direct Object Reference (IDOR) in Gitea's Git LFS implementation allows authenticated users to delete file locks across any repository on the instance.

The Hook: Binary Wars

Git is amazing at handling text. It merges lines, highlights diffs, and generally makes collaboration possible. But Git is terrible at binary files. Try merging two versions of a 500MB Photoshop file or a compiled game asset. You can't. That's where Git LFS (Large File Storage) comes in.

To prevent two people from editing the same binary file at once (which would result in a 'last save wins' race condition), LFS introduced 'File Locking'. It's the digital equivalent of taking the bathroom key from the gas station counter. Only one person holds the key; everyone else has to wait.

Now, imagine if you walked into that gas station, asked for the key to the bathroom, and the attendant checked your ID, nodded, and then proceeded to remotely unlock the bathroom door at a bank across the street. That is essentially what is happening in CVE-2026-20897.

Gitea, the popular self-hosted Git service, made a classic blunder in database lookup logic. They verified who you were, but they didn't verify where the object you were touching actually lived. The result? A Critical (CVSS 9.1) vulnerability that turns any user with write access into a chaos agent capable of unlocking every file on the server.

The Flaw: The Global Lookup Fallacy

The root cause here is a textbook case of Insecure Direct Object Reference (IDOR), specifically via a 'Global Lookup'. When you build a multi-tenant system (or a multi-repository system like Gitea), nearly every database query needs two WHERE clauses: the ID of the object, and the ID of the parent container (the repository).

In the vulnerable version of Gitea, the developers implemented the API endpoint for deleting an LFS lock. The API route looks something like this:

POST /:owner/:repo/info/lfs/locks/delete/:lock_id

The logic flow seemed sound on the surface:

  1. Authentication: Is the user logged in?
  2. Authorization: Does the user have write access to :repo?
  3. Action: Delete the lock with ID :lock_id.

The fatal flaw was in step 3. The authorization check proved the user owned the repo in the URL. However, the subsequent database query to find the lock ignored the repo entirely. It just asked the database: "Give me the lock with ID 12345." Since database IDs are usually auto-incrementing integers unique across the entire table (not scoped to the repo), lock ID 12345 is globally unique.

If lock 12345 belonged to a private, sensitive repository that the attacker couldn't see, the code didn't care. It fetched the lock object, saw the attacker had permission on the context repository (the one in the URL), and happily deleted the lock belonging to the victim repository.

The Code: The Smoking Gun

Let's look at the Go code responsible for this. The vulnerability resided in models/git/lfs_lock.go. In the function GetLFSLockByID, the code was dangerously simple.

The Vulnerable Code

// models/git/lfs_lock.go (Vulnerable)
 
func GetLFSLockByID(ctx context.Context, id int64) (*LFSLock, error) {
    lock := new(LFSLock)
    // CRITICAL FLAW: Lookup is only by 'id'
    has, err := db.GetEngine(ctx).ID(id).Get(lock)
    if err != nil {
        return nil, err
    }
    // ... returns lock
}

Do you see the missing constraint? It trusts the id implicitly. If I request ID 500, I get the lock object for ID 500, regardless of who owns it. The controller layer then proceeds to delete it.

The Fix

The patch (Commit da036f3) introduces the necessary scoping. They renamed the function to GetLFSLockByIDAndRepo and forced the repository ID into the query.

// models/git/lfs_lock.go (Patched)
 
func GetLFSLockByIDAndRepo(ctx context.Context, id, repoID int64) (*LFSLock, error) {
    lock := new(LFSLock)
    // FIX: Scoped by ID AND repo_id
    has, err := db.GetEngine(ctx).ID(id).And("repo_id = ?", repoID).Get(lock)
    if err != nil {
        return nil, err
    }
    // ...
}

This And("repo_id = ?", repoID) is the difference between a secure application and a critical vulnerability. Now, if an attacker tries to delete lock 12345 via their own repo (Repo ID 99), the database query looks for id=12345 AND repo_id=99. Since lock 12345 actually belongs to Repo ID 1, the query returns nothing, and the exploit fails.

The Exploit: Breaking Locks

Exploiting this requires an authenticated account and write access to any repository. It does not require access to the victim's repository. Here is how an attacker would weaponize this.

The Setup

  1. Attacker: Creates a throwaway repository: attacker/malice-repo.
  2. Target: A high-value repo corp/secret-project uses LFS locks for large assets.

The Attack Chain

First, the attacker needs to guess the Lock ID. Since Gitea uses incremental integers for IDs, this is trivial. If the attacker creates a lock in their own repo and gets ID 5000, they can assume IDs 1 through 4999 exist for other repositories.

The attacker constructs a malicious curl command:

# Target: Lock ID 1337 (belonging to corp/secret-project)
# Context: attacker/malice-repo (where attacker has Admin/Write)
 
curl -X POST "https://gitea.target.com/api/v1/repos/attacker/malice-repo/git/lfs/locks/1337/unlock" \
     -H "Authorization: token <ATTACKER_TOKEN>" \
     -H "Content-Type: application/json" \
     -d '{"force": true}'

What happens internally?

The lock is gone. The developer working on secret-project has no idea their file is now unlocked.

The Impact: Workflow Denial of Service

Why is this a CVSS 9.1? It's not a data leak (Confidentiality is None). You can't steal the code. But the Integrity and Availability impacts are severe.

In environments that rely heavily on LFS (Game Development, ML Engineering, Video Production), file locking is the only thing preventing data corruption. If an attacker writes a script to loop from ID 1 to 100000 and unlocks everything:

  1. Merge Conflicts: Developers will overwrite each other's work on binary files. Since binaries can't be merged, work is lost. Hours of rendering or compiling are wasted.
  2. Silent Corruption: If two people push changes to a locked binary, the state of the repository becomes inconsistent.
  3. Denial of Service: The team cannot trust the locking mechanism. They are forced to stop working or move to manual coordination (email/Slack), grinding productivity to a halt.

The vulnerability has a scope change (S:C) because the vulnerability in the LFS component affects the integrity of data in completely unrelated security contexts (other repositories).

The Fix: Scope Your Queries

If you are running Gitea, check your footer. If it says anything less than 1.25.4, you are vulnerable.

Remediation

  1. Upgrade: Update to Gitea 1.25.4 immediately.
  2. Configuration: If you cannot upgrade, you can disable LFS support in your app.ini by setting LFS_START_SERVER = false, though this will break LFS functionality for your users.

Developer Takeaway

This is a classic lesson in Defense in Depth. Never assume that because a user is authorized to enter a controller method, they are authorized to access the data requested within that method.

Always chain your lookups.

  • Bad: find(id)
  • Good: find(id).where(owner_id: current_user.id)

If your ORM or database layer allows global lookups by primary key, you must manually ensure that the object returned belongs to the security context of the request.

Official Patches

GiteaGitea v1.25.4 Release Notes

Fix Analysis (1)

Technical Appendix

CVSS Score
9.1/ 10
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:N/I:H/A:H
EPSS Probability
0.02%
Top 97% most exploited

Affected Systems

Gitea Server < 1.25.4

Affected Versions Detail

Product
Affected Versions
Fixed Version
Gitea
Gitea
<= 1.25.31.25.4
AttributeDetail
CWECWE-639 (Authorization Bypass Through User-Controlled Key)
CVSS9.1 (Critical)
Attack VectorNetwork (Authenticated)
ImpactIntegrity / Availability
Exploit StatusPoC Available (Theoretical)
EPSS Score0.00017

MITRE ATT&CK Mapping

T1222File and Directory Permissions Modification
Defense Evasion
T1499Endpoint Denial of Service
Impact
CWE-639
Authorization Bypass Through User-Controlled Key

The application does not verify that the user-provided ID matches the object associated with the current security context.

Known Exploits & Detection

Internal ResearchThe logic flaw is evident in the source code prior to version 1.25.4. No public exploit script is required to reproduce; standard curl commands suffice.

Vulnerability Timeline

Fix commit merged
2026-01-11
Gitea v1.25.4 Released
2026-01-22
CVE-2026-20897 Assigned
2026-01-22

References & Sources

  • [1]GHSA-393c-qgvj-3xph
  • [2]Gitea Blog: Release 1.25.4

Attack Flow Diagram

Press enter or space to select a node. You can then use the arrow keys to move the node around. Press delete to remove it and escape to cancel.
Press enter or space to select an edge. You can then press delete to remove it or escape to cancel.

More Reports

•about 1 hour ago•GHSA-FHGH-WQ4Q-R37X
7.8

GHSA-FHGH-WQ4Q-R37X: Remote Code Execution via Sigstore Signature Verification Bypass in uniget CLI

A high-severity logic inversion flaw in the uniget CLI completely bypasses Sigstore cryptographic signature verification on metadata files by default. If an attacker can poison the package metadata cache or repository, they can execute arbitrary OS commands under the privileges of the active user.

Alon Barad
Alon Barad
3 views•5 min read
•about 2 hours ago•CVE-2026-59903
6.5

CVE-2026-59903: Cache Poisoning and Information Disclosure via CorsHandler Vary Header Overwrite

A technical analysis of CVE-2026-59903 in Netty's HTTP CORS handler, where the CorsHandler overwrites existing application Vary headers with Origin, leading to unauthorized caching of sensitive information.

Alon Barad
Alon Barad
2 views•5 min read
•about 3 hours ago•CVE-2026-59902
7.5

CVE-2026-59902: Memory Exhaustion in Netty SctpMessageCompletionHandler

An uncontrolled resource consumption vulnerability in Netty's SctpMessageCompletionHandler allows unauthenticated remote attackers to cause a Denial of Service. By transmitting a series of large, fragmented Stream Control Transmission Protocol (SCTP) messages, an attacker can exhaust the Java Virtual Machine heap or direct memory. This occurs because the handler fails to enforce limits on the cumulative byte size of buffered, incomplete SCTP fragments.

Amit Schendel
Amit Schendel
6 views•6 min read
•about 4 hours ago•CVE-2026-68518
8.8

CVE-2026-68518: Command Injection Bypass in Glances via Cross-Field Shell-Operator Reconstruction

A command injection bypass vulnerability exists in the Glances system monitoring tool prior to v4.5.6. This flaw permits an attacker with local process or container metadata control to bypass action-template sanitizers by reconstructing shell execution operators across adjacent unescaped variables. When a system alert triggers a configured action template, the reconstructed operators are evaluated by the underlying shell, leading to arbitrary code execution in the context of the Glances process.

Amit Schendel
Amit Schendel
4 views•9 min read
•3 days ago•CVE-2026-53653
8.7

CVE-2026-53653: Unauthenticated Denial of Service via Unbounded Image Derivative Dimensions in Grav CMS

Grav CMS prior to version 1.7.53 and 2.0.0-rc.8 is vulnerable to an unauthenticated remote denial of service (DoS) vulnerability. By supplying crafted query parameters with extremely large dimensions to image assets, remote unauthenticated attackers can force the server to allocate massive amounts of system memory, leading to kernel Out-Of-Memory (OOM) termination of web worker processes.

Amit Schendel
Amit Schendel
11 views•7 min read
•3 days ago•CVE-2026-53657
8.2

CVE-2026-53657: Privilege Escalation via Overly Permissive Unix Domain Socket in Lima Guest Agent

CVE-2026-53657 is a local privilege escalation vulnerability in Lima (lima-vm/lima) affecting versions prior to 2.1.3 when configured with the QEMU driver. The guest agent daemon, running as root, creates its communication socket `/run/lima-guestagent.sock` with world-writable permissions (0777). This allows unprivileged local users to command the agent to establish arbitrary tunnels, including to privileged local UNIX sockets (like D-Bus). Because the target daemon authenticates the incoming connection using the credentials of the root-owned guest agent (via SO_PEERCRED), unprivileged users can perform root operations, resulting in complete guest VM compromise.

Amit Schendel
Amit Schendel
8 views•9 min read