A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-28492

CVE-2026-28492: File Browser Information Disclosure Flaw

CVE-2026-28492 is an information disclosure vulnerability in File Browser that allows unauthorized access to sibling directories via public share links. This article covers the technical details, affected versions, and mitigation.

Published: March 6, 2026

CVE-2026-28492 Overview

CVE-2026-28492 is a Path Traversal vulnerability affecting File Browser, a web-based file management interface. The vulnerability exists in versions prior to 2.61.0, where the withHashFile middleware in http/public.go incorrectly computes the filesystem root when creating public share links for directories. By using filepath.Dir(link.Path) instead of properly sanitizing the path, the application sets the filesystem root to the parent directory of the shared directory rather than the shared directory itself. This allows any user with a public share link to browse and download files from all sibling directories, resulting in unauthorized information disclosure.

Critical Impact

Unauthorized access to sensitive files and directories beyond the intended shared scope, potentially exposing confidential data to anyone with a public share link.

Affected Products

  • File Browser versions prior to 2.61.0

Discovery Timeline

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

Technical Details for CVE-2026-28492

Vulnerability Analysis

This vulnerability is classified under CWE-200 (Exposure of Sensitive Information to an Unauthorized Actor). The flaw resides in the public share link functionality of File Browser, specifically within the withHashFile middleware implementation. When a user creates a public share link for a directory, the middleware incorrectly calculates the base path for the BasePathFs root filesystem. This miscalculation allows the shared link to provide access to the parent directory instead of the intended shared directory.

The practical impact is significant: an attacker who obtains a public share link can traverse to sibling directories and access files that were never intended to be shared. This could expose sensitive configuration files, user data, credentials, or other confidential information stored in adjacent directories.

Root Cause

The root cause is an improper path calculation in the withHashFile middleware located in http/public.go. When a directory is shared publicly, the code uses filepath.Dir(basePath) to determine the filesystem root. The filepath.Dir() function returns the parent directory of the given path, which inadvertently expands the accessible scope beyond the intended shared directory. The correct approach is to use filepath.Clean(link.Path) to properly sanitize and use the exact shared path as the filesystem root.

Attack Vector

The attack vector is network-based and requires low privileges (a valid public share link). An attacker who obtains or guesses a public share link for any directory can exploit this vulnerability to:

  1. Access the parent directory of the shared folder
  2. Browse and enumerate sibling directories
  3. Download files from any sibling directory
  4. Potentially access sensitive data that was never intended to be publicly accessible

The vulnerability does not require any user interaction and can be exploited remotely by anyone with access to a public share link.

go
// Security patch in http/public.go - fix: correctly clean path
 		filePath := ""
 
 		if file.IsDir {
-			basePath = filepath.Dir(basePath)
+			basePath = filepath.Clean(link.Path)
 			filePath = ifPath
 		}

Source: GitHub Commit Details

Detection Methods for CVE-2026-28492

Indicators of Compromise

  • Unexpected access patterns to public share links attempting to traverse to parent or sibling directories
  • Web server logs showing requests with path traversal sequences (../) in public share URLs
  • Access to files or directories that fall outside the scope of the originally shared directory
  • Unusual download activity from public share endpoints accessing multiple directory paths

Detection Strategies

  • Monitor File Browser access logs for requests that access paths outside the intended shared directory scope
  • Implement web application firewall (WAF) rules to detect path traversal attempts in public share link requests
  • Audit public share link usage and compare accessed paths against intended shared directories
  • Deploy intrusion detection systems (IDS) with signatures for path traversal patterns targeting file management applications

Monitoring Recommendations

  • Enable verbose logging for the File Browser application to capture all public share access attempts
  • Set up alerts for access patterns that indicate directory enumeration or traversal behavior
  • Regularly review public share links and their access logs for anomalous activity
  • Monitor network traffic for unusual data exfiltration patterns from the File Browser server

How to Mitigate CVE-2026-28492

Immediate Actions Required

  • Upgrade File Browser to version 2.61.0 or later immediately
  • Audit existing public share links and review what data may have been accessible through them
  • Consider temporarily disabling public share functionality until the patch is applied
  • Review access logs to determine if the vulnerability has been exploited

Patch Information

The vulnerability has been patched in File Browser version 2.61.0. The fix replaces the vulnerable filepath.Dir(basePath) call with filepath.Clean(link.Path), ensuring that the filesystem root is correctly set to the exact shared directory path. Users should upgrade to version 2.61.0 or later by following the official release notes available at the GitHub Release v2.61.0. Additional technical details about the security fix can be found in the GitHub Security Advisory GHSA-mr74-928f-rw69.

Workarounds

  • Disable public share functionality entirely until the patch can be applied
  • Implement network-level access controls to restrict who can access public share links
  • Place sensitive files and directories in isolated storage locations that cannot be siblings to shared directories
  • Use a reverse proxy with path validation rules to block requests that attempt to access paths outside shared directories
bash
# Configuration example
# Upgrade File Browser to the patched version
# Using Docker:
docker pull filebrowser/filebrowser:v2.61.0
docker stop filebrowser
docker rm filebrowser
docker run -d --name filebrowser -v /path/to/data:/srv -p 8080:80 filebrowser/filebrowser:v2.61.0

# Or if using a binary installation, download the latest release:
# wget https://github.com/filebrowser/filebrowser/releases/download/v2.61.0/linux-amd64-filebrowser.tar.gz
# tar -xzf linux-amd64-filebrowser.tar.gz
# ./filebrowser version  # Verify version 2.61.0

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechFile Browser

  • SeverityHIGH

  • CVSS Score7.1

  • 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 Commit Details

  • GitHub Release v2.61.0

  • GitHub Security Advisory GHSA-mr74-928f-rw69
  • Related CVEs
  • CVE-2026-35606: File Browser Auth Bypass Vulnerability

  • CVE-2026-35605: File Browser Path Traversal Vulnerability

  • CVE-2026-35585: File Browser OS Command Injection RCE Flaw

  • CVE-2026-35604: File Browser Auth Bypass Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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