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-32759

CVE-2026-32759: Filebrowser Filebrowser RCE Vulnerability

CVE-2026-32759 is a remote code execution vulnerability in Filebrowser that exploits negative upload length values to trigger exec hooks with empty files. This article covers the technical details, affected versions, and impact.

Published: March 27, 2026

CVE-2026-32759 Overview

File Browser is a popular file managing interface for uploading, deleting, previewing, renaming, and editing files within a specified directory. A vulnerability has been identified in versions 2.61.2 and below where the TUS resumable upload handler improperly parses the Upload-Length header as a signed 64-bit integer without validating that the value is non-negative. This integer overflow vulnerability (CWE-190) allows an authenticated user to supply a negative value that instantly satisfies the upload completion condition upon the first PATCH request.

Critical Impact

This vulnerability enables attackers to trigger exec hooks with empty or partial files, leading to denial of service, command injection amplification with malicious filenames, or abuse of upload-driven workflows. When enableExec is enabled, impact escalates from cache inconsistency to potential remote command execution.

Affected Products

  • File Browser versions 2.61.2 and below
  • All deployments using the TUS upload endpoint (/api/tus)
  • Configurations with enableExec flag enabled (elevated risk)

Discovery Timeline

  • 2026-03-20 - CVE-2026-32759 published to NVD
  • 2026-03-23 - Last updated in NVD database

Technical Details for CVE-2026-32759

Vulnerability Analysis

The vulnerability resides in the TUS (resumable upload) handler implementation within File Browser. The TUS protocol is designed to allow resumable file uploads, where the client specifies the total file size via the Upload-Length header. The application parses this header value as a signed 64-bit integer but fails to validate that the provided value is non-negative.

When an authenticated attacker supplies a negative value in the Upload-Length header, the server's internal upload completion logic is immediately satisfied upon the first PATCH request. This occurs because the comparison check that determines whether an upload is complete (bytes received >= expected length) evaluates to true when the expected length is negative, as any non-negative number of received bytes will be greater than a negative expected length.

The impact manifests in multiple ways depending on deployment configuration. At a baseline, all affected deployments experience cache inconsistency where files are marked as complete but contain no actual data. When exec hooks are configured via the enableExec flag, the server fires after_upload hooks with empty or partial files, enabling attackers to repeatedly trigger configured hooks with arbitrary filenames and zero bytes written.

Root Cause

The root cause is improper input validation of the Upload-Length HTTP header in the TUS upload handler. The application accepts signed integer values without boundary checking, failing to reject negative values that violate the TUS protocol specification. This represents a classic integer overflow vulnerability (CWE-190) where the absence of non-negative validation allows exploitation of signed/unsigned integer comparison semantics.

Attack Vector

The attack is network-based and requires authentication to the File Browser application. An attacker with valid credentials can exploit this vulnerability by:

  1. Initiating a TUS upload session to the /api/tus endpoint
  2. Setting the Upload-Length header to a negative value (e.g., -1)
  3. Sending a PATCH request with minimal or no file content
  4. The server interprets the upload as complete due to the negative length comparison

This causes immediate triggering of any configured after_upload exec hooks. The attacker can repeat this process to create a denial of service through expensive processing hooks, amplify command injection attacks when combined with malicious filenames, or abuse upload-driven workflows such as S3 ingestion or database inserts.

The vulnerability is described in the GitHub Security Advisory GHSA-ffx7-75gc-jg7c and tracked in GitHub Issue #5199.

Detection Methods for CVE-2026-32759

Indicators of Compromise

  • Unusual TUS upload requests to /api/tus with negative Upload-Length header values
  • Exec hook executions triggered for files with zero or unexpectedly small file sizes
  • Presence of empty or corrupted files in the upload directory marked as complete
  • Repeated rapid upload completion events from the same authenticated user

Detection Strategies

  • Monitor HTTP request logs for Upload-Length headers containing negative integer values
  • Implement web application firewall (WAF) rules to block requests with negative Upload-Length values
  • Audit exec hook execution logs for patterns indicating trigger abuse (high frequency, zero-byte files)
  • Review file system integrity for zero-byte files that were processed as complete uploads

Monitoring Recommendations

  • Enable verbose logging on the File Browser application to capture header values
  • Set up alerting for anomalous upload patterns, particularly rapid completion of uploads
  • Monitor system resource utilization for signs of DoS via hook exhaustion
  • Track file creation events in upload directories for zero-byte file anomalies

How to Mitigate CVE-2026-32759

Immediate Actions Required

  • Disable the enableExec flag if not strictly required to reduce impact from cache inconsistency to preventing remote command execution
  • Implement reverse proxy rules to validate and reject negative Upload-Length header values
  • Restrict access to the /api/tus endpoint to trusted users only
  • Review and audit all configured exec hooks for potential abuse vectors

Patch Information

At the time of publication, no official patch or mitigation was available from the vendor to address this issue. Monitor the GitHub Security Advisory for updates on patch availability.

Workarounds

  • Disable the TUS upload endpoint (/api/tus) if resumable uploads are not required for your deployment
  • Implement input validation at the reverse proxy level using nginx or similar to reject requests with negative Upload-Length values
  • Remove or disable all exec hooks until a patch is available
  • Consider implementing rate limiting on the TUS endpoint to reduce DoS impact
bash
# Example nginx configuration to block negative Upload-Length values
# Add to your server block handling File Browser
location /api/tus {
    # Block requests with negative Upload-Length header
    if ($http_upload_length ~* "^-") {
        return 400;
    }
    proxy_pass http://filebrowser_backend;
}

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechFilebrowser

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.18%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:N/VI:L/VA:L/SC:N/SI:L/SA:L/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
  • AvailabilityLow
  • CWE References
  • CWE-190
  • Technical References
  • GitHub Issue #5199
  • Vendor Resources
  • GitHub Security Advisory GHSA-ffx7-75gc-jg7c
  • Related CVEs
  • CVE-2026-32761: Filebrowser Auth Bypass Vulnerability

  • CVE-2026-32758: Filebrowser Path Traversal Vulnerability

  • CVE-2026-32760: Filebrowser Auth Bypass Vulnerability

  • CVE-2026-30933: FileBrowser Quantum Info Disclosure Flaw
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