Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-22253

CVE-2026-22253: Soft Serve Auth Bypass Vulnerability

CVE-2026-22253 is an authorization bypass flaw in Soft Serve Git server allowing authenticated users to delete LFS locks owned by others. This article covers technical details, affected versions, impact, and mitigation.

Updated: January 22, 2026

CVE-2026-22253 Overview

CVE-2026-22253 is an authorization bypass vulnerability affecting Soft Serve, a self-hostable Git server for the command line. Prior to version 0.11.2, the LFS (Large File Storage) lock deletion endpoint contains a critical flaw that allows any authenticated user with repository write access to delete locks owned by other users by setting the force flag. This weakness is classified under CWE-863 (Incorrect Authorization).

Critical Impact

Authenticated users can bypass lock ownership validation and delete LFS locks belonging to other users, potentially disrupting collaborative workflows and causing data integrity issues in repositories.

Affected Products

  • Soft Serve versions prior to 0.11.2
  • Self-hosted Git server deployments using Soft Serve LFS functionality
  • Environments with multiple users utilizing LFS file locking features

Discovery Timeline

  • 2026-01-08 - CVE-2026-22253 published to NVD
  • 2026-01-08 - Last updated in NVD database

Technical Details for CVE-2026-22253

Vulnerability Analysis

This authorization bypass vulnerability exists in the LFS lock deletion functionality within Soft Serve's web handling code. The root issue stems from the order of operations in the lock deletion code path—specifically, force deletion requests are processed before the user context is retrieved and validated. This architectural flaw means that ownership checks are completely bypassed when an attacker sets the force flag in their deletion request.

In a properly secured implementation, ownership validation should occur before any deletion action is taken, regardless of the force flag status. The vulnerability allows any authenticated user with write access to a repository to arbitrarily delete locks created by other users, undermining the collaborative locking mechanism that LFS provides for managing large binary files.

Root Cause

The vulnerable code path in pkg/web/git_lfs.go processes force deletions before retrieving user context, which means the ownership validation logic is never executed for force delete requests. This represents a classic authorization bypass where the security check is placed after the action occurs or in a code path that can be circumvented entirely.

Attack Vector

An attacker with authenticated write access to a repository can exploit this vulnerability by sending a lock deletion request with the force flag enabled. The attack is network-accessible and requires low privileges (repository write access), with no user interaction required. The attacker simply needs to:

  1. Authenticate to the Soft Serve instance
  2. Identify a target lock ID belonging to another user
  3. Send a DELETE request to the LFS lock endpoint with the force parameter set to true
  4. The lock is deleted without ownership verification
go
// Security patch in pkg/web/git_lfs.go
// The fix ensures proper authorization checks before processing deletions
 	return
 }

-	// Delete another user's lock
 l := lfs.Lock{
 	ID:       strconv.FormatInt(lock.ID, 10),
 	Path:     lock.Path,

Source: GitHub Commit

Detection Methods for CVE-2026-22253

Indicators of Compromise

  • Unusual patterns of LFS lock deletions, particularly force deletions performed by users who did not create the original locks
  • Log entries showing lock deletion requests with force flag from users other than the lock owner
  • Complaints from repository collaborators about unexpectedly released file locks

Detection Strategies

  • Monitor LFS lock deletion API endpoints for requests containing the force parameter
  • Implement audit logging to track the relationship between lock owners and deletion requesters
  • Review access logs for patterns indicating systematic lock deletions by non-owners

Monitoring Recommendations

  • Enable verbose logging for LFS operations in Soft Serve
  • Configure alerting for force deletion requests on critical repositories
  • Periodically audit lock ownership and deletion history for anomalies

How to Mitigate CVE-2026-22253

Immediate Actions Required

  • Upgrade Soft Serve to version 0.11.2 or later immediately
  • Audit recent LFS lock deletion activity to identify potential exploitation
  • Review repository access permissions and restrict write access where appropriate
  • Consider temporarily disabling LFS lock functionality until the patch is applied

Patch Information

The vulnerability has been patched in Soft Serve version 0.11.2. The fix ensures that user context and ownership validation occurs before processing any lock deletion request, regardless of the force flag status. The security patch is available via the GitHub commit and detailed in the GitHub Security Advisory.

Workarounds

  • Restrict repository write access to only trusted users until the patch can be applied
  • Implement network-level access controls to limit who can reach the Soft Serve LFS endpoints
  • Monitor and alert on all force deletion requests as a compensating control
bash
# Configuration example
# Upgrade Soft Serve to patched version
# Using Go installation
go install github.com/charmbracelet/soft-serve/cmd/soft@v0.11.2

# Verify installed version
soft --version
# Expected output: soft version 0.11.2 or higher

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechSoft Serve

  • SeverityMEDIUM

  • CVSS Score5.4

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-863
  • Technical References
  • GitHub Commit Update

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-24058: Soft Serve Auth Bypass Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English