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

CVE-2026-32758: Filebrowser Path Traversal Vulnerability

CVE-2026-32758 is a path traversal flaw in Filebrowser that allows authenticated users to bypass deny rules and write files to restricted paths. This article covers the technical details, affected versions, and mitigation.

Published: March 27, 2026

CVE-2026-32758 Overview

CVE-2026-32758 is a Path Traversal vulnerability affecting File Browser, a web-based file management interface used for uploading, deleting, previewing, renaming, and editing files within a specified directory. The vulnerability exists in the resourcePatchHandler function within http/resource.go, where improper path validation allows authenticated users to bypass administrator-configured deny rules.

The core issue stems from a timing flaw in path validation: the destination path is validated against access rules before being cleaned/normalized, while the actual file operation calls path.Clean() afterward. This discrepancy allows .. sequences to resolve to different effective paths than what was originally validated, enabling bypass of both prefix-based and regex-based deny rules.

Critical Impact

Authenticated users with Create or Rename permissions can bypass administrator-configured access restrictions to write or move files into protected directories within their scope.

Affected Products

  • File Browser versions 2.61.2 and below
  • Any deployment using File Browser's deny rule functionality for access control

Discovery Timeline

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

Technical Details for CVE-2026-32758

Vulnerability Analysis

This Path Traversal vulnerability exploits a Time-of-Check Time-of-Use (TOCTOU) race condition in how File Browser validates and processes file paths. The resourcePatchHandler function performs access control validation on the raw destination path parameter from PATCH requests before normalizing it. Subsequently, when the actual file operation executes, path.Clean() is called, which resolves .. sequences into their canonical form.

This order-of-operations flaw means an attacker can craft a destination path that appears legitimate during validation but resolves to a protected location when cleaned. For example, a path like /allowed/../denied/file.txt might pass deny rule checks for /denied/ but ultimately writes to that protected directory after normalization.

The vulnerability requires authentication and either Create or Rename permissions, limiting exploitation to authorized users. While this cannot be used to escape the user's BasePathFs scope or read from restricted paths, it effectively nullifies administrator-configured deny rules for write operations within the user's allowed scope.

Root Cause

The root cause is improper ordering of security controls in the path handling logic. The resourcePatchHandler validates paths against access rules using the unsanitized input, but the file system operations use the cleaned/normalized path. This violates the security principle that validation must occur on the final, canonical form of user input.

The fix in version 2.62.0 ensures that path normalization via path.Clean() occurs before access rule validation, ensuring that the validated path matches the path used for file operations.

Attack Vector

The attack requires an authenticated user with Create or Rename permissions to send a specially crafted PATCH request to the File Browser API. The destination parameter includes .. path traversal sequences designed to bypass configured deny rules.

The vulnerability is accessible over the network and requires low attack complexity, though prior authentication is mandatory. An attacker could leverage this to:

  1. Write malicious files (such as web shells or configuration files) to directories that should be protected
  2. Move sensitive files into exposed locations
  3. Overwrite critical files in protected directories

Since File Browser is commonly used to manage web server content, successful exploitation could lead to further compromise of the hosting environment.

Detection Methods for CVE-2026-32758

Indicators of Compromise

  • PATCH requests to File Browser containing .. sequences in the destination parameter
  • File operations in directories covered by deny rules that were not explicitly allowed
  • Unexpected files appearing in protected directories
  • Audit logs showing file moves or writes to restricted paths

Detection Strategies

  • Monitor File Browser API logs for PATCH requests with path traversal patterns such as ../ or ..%2F
  • Implement web application firewall rules to detect and block path traversal attempts
  • Review file system integrity monitoring alerts for changes in protected directories
  • Analyze authentication logs for users with Create/Rename permissions making suspicious requests

Monitoring Recommendations

  • Enable detailed request logging on File Browser instances
  • Configure file integrity monitoring (FIM) on directories protected by deny rules
  • Set up alerts for failed access control violations that may indicate exploitation attempts
  • Monitor for unauthorized file modifications in web-accessible directories

How to Mitigate CVE-2026-32758

Immediate Actions Required

  • Upgrade File Browser to version 2.62.0 or later immediately
  • Review audit logs for any suspicious PATCH requests containing path traversal patterns
  • Verify integrity of files in directories protected by deny rules
  • Consider temporarily restricting Create and Rename permissions until patching is complete

Patch Information

The vulnerability has been addressed in File Browser version 2.62.0. The fix ensures path normalization occurs before access rule validation, eliminating the TOCTOU condition. The patch is available in GitHub commit 4bd7d69c82163b201a987e99c0c50d7ecc6ee5f1.

For detailed information about the vulnerability and fix, refer to the GitHub Security Advisory GHSA-9f3r-2vgw-m8xp.

Workarounds

  • Temporarily revoke Create and Rename permissions from untrusted users until patching
  • Implement additional file system-level access controls as a defense-in-depth measure
  • Deploy a reverse proxy or WAF with path traversal detection rules in front of File Browser
  • Use network segmentation to limit access to File Browser instances
bash
# Example: Upgrade File Browser to patched version
# Stop the current File Browser service
sudo systemctl stop filebrowser

# Download the latest release (v2.62.0 or newer)
curl -fsSL https://github.com/filebrowser/filebrowser/releases/download/v2.62.0/linux-amd64-filebrowser.tar.gz -o filebrowser.tar.gz

# Extract and install
tar -xzf filebrowser.tar.gz
sudo mv filebrowser /usr/local/bin/

# Restart the service
sudo systemctl start filebrowser

# Verify the version
filebrowser version

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechFilebrowser

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-22
  • Technical References
  • GitHub Release v2.62.0
  • Vendor Resources
  • GitHub Commit Overview

  • GitHub Security Advisory GHSA-9f3r-2vgw-m8xp
  • Related CVEs
  • CVE-2026-32761: Filebrowser Auth Bypass Vulnerability

  • CVE-2026-32760: Filebrowser Auth Bypass Vulnerability

  • CVE-2026-32759: Filebrowser Filebrowser RCE 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