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
    • 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-29188

CVE-2026-29188: File Browser Auth Bypass Vulnerability

CVE-2026-29188 is an authentication bypass flaw in File Browser that lets users with Create permission delete files, bypassing Delete permission checks. This article covers the technical details, affected versions, and mitigations.

Published: March 6, 2026

CVE-2026-29188 Overview

CVE-2026-29188 is a broken access control vulnerability affecting File Browser, a web-based file management interface that enables users to upload, delete, preview, rename, and edit files within a specified directory. The vulnerability exists in the TUS (resumable upload) protocol DELETE endpoint, where the permission check incorrectly validates the Create permission instead of the required Delete permission, allowing authenticated users to bypass intended access restrictions.

Critical Impact

Authenticated users with only Create permission can delete arbitrary files and directories within their scope, completely bypassing the intended Delete permission restriction. This poses significant risk to multi-user deployments where administrators explicitly restrict file deletion capabilities.

Affected Products

  • File Browser versions prior to 2.61.1
  • Multi-user deployments with explicit deletion restrictions
  • Environments using TUS protocol for file management

Discovery Timeline

  • 2026-03-05 - CVE CVE-2026-29188 published to NVD
  • 2026-03-05 - Last updated in NVD database

Technical Details for CVE-2026-29188

Vulnerability Analysis

This vulnerability is classified under CWE-284 (Improper Access Control). The flaw allows authenticated users to perform unauthorized file deletion operations through the TUS protocol endpoint. The impact is significant because it enables complete bypass of the permission model that administrators rely on to restrict user capabilities.

In multi-user environments where certain users are intentionally prevented from deleting files, this vulnerability undermines the entire permission structure. An attacker with only file creation permissions can delete critical files or directories, potentially causing data loss, service disruption, or enabling further attacks by removing security controls or audit logs.

Root Cause

The root cause is a simple but critical coding error in the TUS DELETE handler within http/tus_handlers.go. The function tusDeleteHandler incorrectly checks d.user.Perm.Create instead of d.user.Perm.Delete when validating whether a user has permission to delete files through the TUS endpoint. This means any user with Create permission automatically gains unauthorized Delete capability on this specific endpoint, despite potentially being explicitly denied Delete permission in the user configuration.

Attack Vector

The attack vector is network-based and requires authentication. An attacker must have valid credentials to the File Browser instance and possess at least Create permission. The attack flow involves:

  1. Authenticating to the File Browser instance with valid credentials
  2. Sending a DELETE request to the TUS protocol endpoint
  3. The server incorrectly validates Create permission instead of Delete permission
  4. The deletion operation succeeds despite the user lacking Delete permission

The vulnerability is exploitable with low complexity and requires no user interaction, making it particularly dangerous in environments with untrusted or semi-trusted users.

go
// Vulnerable vs Patched Code - http/tus_handlers.go
// Source: https://github.com/filebrowser/filebrowser/commit/7ed1425115be602c2b23236c410098ea2d74b42f

func tusDeleteHandler(cache UploadCache) handleFunc {
	return withUser(func(_ http.ResponseWriter, r *http.Request, d *data) (int, error) {
-		if r.URL.Path == "/" || !d.user.Perm.Create {
+		if r.URL.Path == "/" || !d.user.Perm.Delete {
			return http.StatusForbidden, nil
		}

Source: GitHub Commit Change

Detection Methods for CVE-2026-29188

Indicators of Compromise

  • Unexpected file or directory deletions in File Browser managed directories
  • DELETE requests to TUS endpoints (/api/tus/) from users without Delete permission
  • Audit log entries showing deletion operations by users configured with Create-only permissions
  • Missing files or directories that should be protected from deletion

Detection Strategies

  • Review File Browser access logs for DELETE requests to TUS protocol endpoints
  • Cross-reference deletion activities with user permission configurations to identify unauthorized operations
  • Monitor for users with Create-but-not-Delete permissions performing any deletion operations
  • Implement alerting on file system changes in protected directories

Monitoring Recommendations

  • Enable verbose logging in File Browser to capture all TUS endpoint interactions
  • Set up file integrity monitoring on directories managed by File Browser
  • Create alerts for DELETE operations by users in restricted permission groups
  • Regularly audit user permissions and correlate with activity logs

How to Mitigate CVE-2026-29188

Immediate Actions Required

  • Upgrade File Browser to version 2.61.1 or later immediately
  • Audit recent file deletions to identify any unauthorized operations
  • Review user permissions and identify accounts with Create-but-not-Delete configurations
  • Consider temporarily disabling TUS endpoints if immediate patching is not possible

Patch Information

The vulnerability has been patched in File Browser version 2.61.1. The fix corrects the permission check in the tusDeleteHandler function to properly validate d.user.Perm.Delete instead of d.user.Perm.Create. Administrators should upgrade to this version immediately to resolve the vulnerability.

For detailed patch information, see the GitHub Security Advisory GHSA-79pf-vx4x-7jmm and the patched release v2.61.1.

Workarounds

  • Temporarily revoke Create permissions from users who should not have Delete access until patching is complete
  • Place a reverse proxy in front of File Browser to block DELETE requests to TUS endpoints
  • Implement file system-level protections on critical directories to prevent deletion regardless of application permissions
  • Consider using immutable backup snapshots of critical data
bash
# Example: Block TUS DELETE requests via nginx reverse proxy
location /api/tus/ {
    if ($request_method = DELETE) {
        return 403;
    }
    proxy_pass http://filebrowser:8080;
}

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechFile Browser

  • SeverityCRITICAL

  • CVSS Score9.1

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

  • GitHub Release v2.61.1

  • GitHub Security Advisory GHSA-79pf-vx4x-7jmm
  • Related CVEs
  • CVE-2026-35606: File Browser Auth Bypass Vulnerability

  • CVE-2026-35604: File Browser Auth Bypass Vulnerability

  • CVE-2026-25890: File Browser Auth Bypass Vulnerability

  • CVE-2026-25889: File Browser 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