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

CVE-2026-23849: File Browser Auth Bypass Vulnerability

CVE-2026-23849 is a timing-based authentication bypass flaw in File Browser allowing username enumeration through response time analysis. This article covers the technical details, affected versions, and mitigation.

Published: January 23, 2026

CVE-2026-23849 Overview

CVE-2026-23849 is a timing attack 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.55.0, the JSONAuth.Auth function contains a logic flaw that allows unauthenticated attackers to enumerate valid usernames by measuring the response time of the /api/login endpoint.

This vulnerability exists due to a "short-circuit" evaluation in the authentication logic. When a username is not found in the database, the function returns immediately. However, if the username does exist, the code proceeds to verify the password using bcrypt (users.CheckPwd), which is a computationally expensive operation designed to be slow. This difference in execution path creates a measurable timing discrepancy that can be exploited for username enumeration.

Critical Impact

Unauthenticated attackers can enumerate valid usernames remotely, potentially enabling targeted brute-force attacks or credential stuffing against confirmed user accounts.

Affected Products

  • File Browser versions prior to 2.55.0

Discovery Timeline

  • 2026-01-19 - CVE CVE-2026-23849 published to NVD
  • 2026-01-19 - Last updated in NVD database

Technical Details for CVE-2026-23849

Vulnerability Analysis

The vulnerability is classified under CWE-208 (Observable Timing Discrepancy). The authentication endpoint at /api/login exhibits different response times depending on whether a submitted username exists in the system. This timing side-channel occurs because the application's authentication logic follows two distinct code paths with significantly different computational requirements.

When an invalid username is submitted, the application immediately returns an authentication failure without performing any password verification. Conversely, when a valid username is provided, the application proceeds to call the users.CheckPwd function, which invokes bcrypt password hashing—an intentionally slow operation designed to resist brute-force attacks. The irony is that bcrypt's security feature creates the very timing discrepancy that enables username enumeration.

An attacker can systematically submit login requests with different usernames while measuring response times. Responses that take measurably longer indicate valid usernames, as the bcrypt verification was invoked. This information can then be used to build a list of valid accounts for targeted attacks.

Root Cause

The root cause is the early-return pattern in the JSONAuth.Auth function that creates observable timing differences between valid and invalid username lookups. The authentication logic fails to implement constant-time comparison for the initial user existence check, allowing attackers to distinguish between the two code paths based on response latency.

Attack Vector

The attack can be executed remotely over the network without authentication. An attacker sends multiple HTTP POST requests to the /api/login endpoint with different usernames while recording response times. Statistical analysis of the timing data reveals which usernames exist in the system based on the measurable delay introduced by bcrypt password verification on valid accounts.

The attack requires no user interaction and can be automated using simple scripting tools. By analyzing the response time distribution, attackers can reliably identify valid usernames even in the presence of network jitter, especially when collecting multiple samples per username.

Detection Methods for CVE-2026-23849

Indicators of Compromise

  • High volume of failed authentication attempts against the /api/login endpoint from a single source IP
  • Systematic username enumeration patterns showing sequential or dictionary-based username testing
  • Unusual authentication request patterns with minimal time between requests
  • Login attempts using usernames not previously seen in normal application usage

Detection Strategies

  • Implement rate limiting detection on the /api/login endpoint to identify brute-force enumeration attempts
  • Monitor authentication logs for patterns of failed logins across multiple usernames from single IP addresses
  • Deploy web application firewall (WAF) rules to detect and block automated enumeration tools
  • Analyze request timing patterns to identify systematic probing behavior

Monitoring Recommendations

  • Enable detailed authentication logging including timestamps and source IP addresses
  • Set up alerts for authentication failure rate thresholds exceeded within defined time windows
  • Monitor for reconnaissance activity targeting the login endpoint
  • Track login attempt frequency per source IP to identify enumeration campaigns

How to Mitigate CVE-2026-23849

Immediate Actions Required

  • Upgrade File Browser to version 2.55.0 or later immediately
  • Implement rate limiting on the /api/login endpoint to slow enumeration attempts
  • Consider implementing account lockout policies or CAPTCHA after failed login attempts
  • Review authentication logs for evidence of prior exploitation

Patch Information

The vulnerability has been addressed in File Browser version 2.55.0. The fix is available in commit 24781badd413ee20333aba5cce1919d676e01889. The patch implements constant-time behavior in the authentication function to eliminate the observable timing discrepancy between valid and invalid username lookups.

For detailed information about the vulnerability and the fix, refer to the GitHub Security Advisory GHSA-43mm-m3h2-3prc.

Workarounds

  • Place File Browser behind a reverse proxy with rate limiting capabilities to throttle enumeration attempts
  • Implement fail2ban or similar tools to automatically block IP addresses exhibiting enumeration behavior
  • Restrict access to the File Browser login page to trusted IP ranges using firewall rules
  • Enable multi-factor authentication if available to mitigate the impact of username enumeration

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

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.09%

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

  • GitHub Security Advisory GHSA-43mm-m3h2-3prc
  • 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-25890: 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