The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
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
    • 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-33353

CVE-2026-33353: Charm Soft Serve Auth Bypass Vulnerability

CVE-2026-33353 is an authorization bypass flaw in Charm Soft Serve that allows authenticated SSH users to clone private repositories. This post covers the technical details, affected versions 0.6.0-0.11.5, and mitigation.

Published: March 27, 2026

CVE-2026-33353 Overview

CVE-2026-33353 is an authorization bypass vulnerability in Charm Soft Serve, a self-hostable Git server for the command line. The flaw exists in the repository import functionality from version 0.6.0 to before version 0.11.6. An authenticated SSH user can exploit this vulnerability to clone server-local Git repositories—including private repositories belonging to other users—into a new repository under their control.

Critical Impact

Any authenticated SSH user can access and clone private repositories belonging to other users, leading to unauthorized disclosure of potentially sensitive source code and intellectual property.

Affected Products

  • Charm Soft Serve versions 0.6.0 to 0.11.5
  • Self-hosted Git server deployments using vulnerable Soft Serve versions
  • Go-based installations via the charm:soft_serve package

Discovery Timeline

  • 2026-03-24 - CVE-2026-33353 published to NVD
  • 2026-03-25 - Last updated in NVD database

Technical Details for CVE-2026-33353

Vulnerability Analysis

This authorization bypass vulnerability stems from insufficient validation in the repository import feature of Soft Serve. When a user attempts to import a repository, the application fails to properly verify whether the specified remote URL points to an external network resource or a local file path. This allows authenticated users to specify local paths to other repositories on the same server, effectively bypassing access controls and gaining unauthorized access to private repositories.

The vulnerability is network-accessible and requires low privileges (valid SSH authentication) but no user interaction, making it relatively easy to exploit for any authenticated user on the system.

Root Cause

The root cause is classified under CWE-200 (Exposure of Sensitive Information to an Unauthorized Actor). The repository import functionality lacked proper validation of the remote URL parameter, failing to distinguish between legitimate external network URLs and local file system paths. This allowed attackers to specify paths to other users' private repositories, which the server would then clone without performing proper authorization checks.

Attack Vector

The attack is conducted over the network by an authenticated SSH user. The attacker leverages the repository import functionality to specify a local path (such as another user's private repository) instead of a legitimate external Git remote URL. Since the server-side code did not validate that the remote was actually a network URL with a valid host, it would process the import request and clone the targeted local repository into a new repository controlled by the attacker.

go
// Security patch adding remote URL validation
// Source: https://github.com/charmbracelet/soft-serve/commit/c147421caf234bcfc1570c79d728ecbbe5813e55

func validateImportRemote(remote string) error {
	endpoint, err := lfs.NewEndpoint(remote)
	if err != nil || endpoint.Host == "" {
		return proto.ErrInvalidRemote
	}

	return nil
}

The patch introduces a new validateImportRemote function that uses the LFS endpoint parser to verify the remote URL has a valid host component, rejecting local file paths.

go
// New error definition for invalid remotes
// Source: https://github.com/charmbracelet/soft-serve/commit/c147421caf234bcfc1570c79d728ecbbe5813e55

var (
	// ErrUnauthorized is returned when the user is not authorized to perform action.
	ErrUnauthorized = errors.New("unauthorized")
	// ErrInvalidRemote is returned when a repository import remote is invalid.
	ErrInvalidRemote = errors.New("remote must be a network URL")
	// ErrFileNotFound is returned when the file is not found.
	ErrFileNotFound = errors.New("file not found")

This adds a specific error type ErrInvalidRemote with a clear message indicating that remotes must be network URLs, preventing local path exploitation.

Detection Methods for CVE-2026-33353

Indicators of Compromise

  • Unusual repository import operations referencing local file paths or relative paths
  • New repositories appearing with content matching existing private repositories
  • Audit logs showing repository imports with non-HTTP/HTTPS remote URLs
  • Unexpected SSH session activity from users performing multiple import operations

Detection Strategies

  • Monitor repository import operations for remotes lacking proper URL schemes (http://, https://, git://)
  • Implement logging for all repository creation and import events with full remote URL capture
  • Review access logs for patterns indicating enumeration of local repository paths
  • Alert on repository imports where the remote does not contain a valid network host

Monitoring Recommendations

  • Enable verbose logging for all Git operations on the Soft Serve instance
  • Implement file integrity monitoring on repository directories to detect unauthorized cloning
  • Set up alerts for anomalous repository creation patterns by individual users
  • Regularly audit repository access and ownership to identify unauthorized data transfers

How to Mitigate CVE-2026-33353

Immediate Actions Required

  • Upgrade Soft Serve to version 0.11.6 or later immediately
  • Audit existing repositories for signs of unauthorized cloning or data exfiltration
  • Review user accounts and SSH key access for any suspicious activity
  • Temporarily disable repository import functionality if immediate upgrade is not possible

Patch Information

Charm has released version 0.11.6 of Soft Serve which addresses this vulnerability. The fix introduces proper validation of import remote URLs to ensure they are legitimate network URLs rather than local file paths. Organizations should upgrade to this version as soon as possible.

For detailed information, see the GitHub Security Advisory GHSA-xgxp-f695-6vrp and the release notes for v0.11.6.

The specific security fix can be reviewed in commit c147421.

Workarounds

  • Restrict SSH access to trusted users only until the patch can be applied
  • Disable or remove repository import functionality at the application or network level
  • Implement network segmentation to limit which users can access the Soft Serve instance
  • Deploy application-layer firewall rules to block repository import requests containing local paths
bash
# Configuration example
# Upgrade Soft Serve to patched version
go install github.com/charmbracelet/soft-serve/cmd/soft@v0.11.6

# Verify the installed version
soft --version
# Expected output: soft version v0.11.6 or later

# Restart the Soft Serve service after upgrade
systemctl restart soft-serve

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechCharm Soft Serve

  • SeverityHIGH

  • CVSS Score7.1

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:N/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-200
  • Technical References
  • GitHub Release v0.11.6
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Security Advisory GHSA-xgxp-f695-6vrp
  • Related CVEs
  • CVE-2026-30832: Charm Soft Serve SSRF Vulnerability
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