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

CVE-2026-25890: File Browser Auth Bypass Vulnerability

CVE-2026-25890 is an authentication bypass flaw in File Browser that lets authenticated users access restricted files by manipulating URL paths with multiple slashes. This article covers technical details, affected versions, and fixes.

Published: February 13, 2026

CVE-2026-25890 Overview

CVE-2026-25890 is an Authorization Bypass vulnerability in File Browser, a web-based file management interface that allows users to upload, delete, preview, rename, and edit files within a specified directory. Prior to version 2.57.1, an authenticated user can bypass the application's "Disallow" file path rules by manipulating the request URL with multiple slashes. This path normalization inconsistency allows unauthorized access to restricted files and directories.

Critical Impact

Authenticated attackers can bypass file access restrictions to read or modify sensitive files that should be protected by the application's "Disallow" rules, potentially leading to data theft or unauthorized modifications.

Affected Products

  • File Browser versions prior to 2.57.1

Discovery Timeline

  • 2026-02-09 - CVE-2026-25890 published to NVD
  • 2026-02-10 - Last updated in NVD database

Technical Details for CVE-2026-25890

Vulnerability Analysis

This vulnerability is classified as CWE-706 (Use of Incorrectly-Resolved Name or Reference), where the application's authorization mechanism and the underlying filesystem handle path normalization differently. When an authenticated user submits a request with multiple slashes in the URL path (e.g., //private/ instead of /private/), the authorization check fails to match the configured "Disallow" rules. However, the filesystem correctly resolves the path, granting the user access to files that should be restricted.

The root cause lies in the use of SkipClean(true) in the Gorilla Mux router configuration, which was originally implemented to handle trailing slash redirects. This setting prevented the router from normalizing paths before passing them to the application's authorization handlers.

Root Cause

The vulnerability stems from a path handling inconsistency where the HTTP router was configured with SkipClean(true), allowing non-normalized paths (containing multiple consecutive slashes) to bypass the authorization logic while still resolving correctly at the filesystem level. This created a security gap between the authorization check and the actual file access.

Attack Vector

This is a network-based attack requiring low privileges (authenticated user) with no user interaction needed. An attacker with valid credentials can:

  1. Identify restricted paths configured in the "Disallow" rules
  2. Craft malicious requests by inserting multiple slashes in the path
  3. Bypass authorization checks to access restricted files
  4. Read sensitive data or potentially modify files depending on permissions

The security patch removes the SkipClean(true) configuration, ensuring paths are properly normalized before authorization checks:

go
 	})
 	index, static := getStaticHandlers(store, server, assetsFs)
 
-	// NOTE: This fixes the issue where it would redirect if people did not put a
-	// trailing slash in the end. I hate this decision since this allows some awful
-	// URLs https://www.gorillatoolkit.org/pkg/mux#Router.SkipClean
-	r = r.SkipClean(true)
-
 	monkey := func(fn handleFunc, prefix string) http.Handler {
 		return handle(fn, prefix, store, server)
 	}

Source: GitHub Commit Update

Detection Methods for CVE-2026-25890

Indicators of Compromise

  • HTTP request logs showing unusual path patterns with multiple consecutive slashes (e.g., //, ///)
  • Access to files or directories that should be restricted by "Disallow" rules
  • Authenticated users accessing paths outside their permitted scope
  • Web server logs with URL patterns containing path normalization anomalies

Detection Strategies

  • Monitor web application logs for requests containing multiple consecutive slashes in file paths
  • Implement Web Application Firewall (WAF) rules to detect and block path traversal attempts
  • Review File Browser access logs for access to paths matching "Disallow" configurations
  • Set up alerts for authenticated users accessing files outside expected directories

Monitoring Recommendations

  • Enable detailed access logging in File Browser to track all file operations
  • Deploy intrusion detection systems with rules for path manipulation attacks
  • Regularly audit "Disallow" rule configurations to ensure proper coverage
  • Monitor for unusual file access patterns from authenticated user accounts

How to Mitigate CVE-2026-25890

Immediate Actions Required

  • Upgrade File Browser to version 2.57.1 or later immediately
  • Review access logs for any signs of exploitation prior to patching
  • Audit "Disallow" rules and verify their effectiveness after the upgrade
  • Consider temporarily restricting File Browser access until patching is complete

Patch Information

The vulnerability is fixed in File Browser version 2.57.1. The fix removes the SkipClean(true) router configuration, ensuring that all paths are properly normalized before authorization checks are performed. Organizations should upgrade to version 2.57.1 or later as documented in the GitHub Release v2.57.1.

For additional technical details, refer to the GitHub Security Advisory GHSA-4mh3-h929-w968.

Workarounds

  • If immediate upgrade is not possible, consider placing File Browser behind a reverse proxy that normalizes paths before forwarding requests
  • Implement additional WAF rules to block requests containing multiple consecutive slashes
  • Restrict network access to File Browser to trusted IP ranges only
  • Review and strengthen "Disallow" rules to use pattern matching that accounts for path variations
bash
# Example nginx configuration to normalize paths before forwarding to File Browser
location / {
    # Normalize multiple slashes in the URL path
    if ($request_uri ~ "^[^?]*?//") {
        rewrite ^(.*)$ $uri permanent;
    }
    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

  • SeverityHIGH

  • CVSS Score8.1

  • EPSS Probability0.03%

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

  • GitHub Release v2.57.1

  • GitHub Security Advisory GHSA-4mh3-h929-w968
  • Related CVEs
  • CVE-2026-35606: File Browser Auth Bypass Vulnerability

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

  • CVE-2026-29188: 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