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

CVE-2026-33808: Fastify Express Auth Bypass Vulnerability

CVE-2026-33808 is an authentication bypass flaw in @fastify/express v4.0.4 and earlier that allows attackers to bypass path-scoped authentication via URL manipulation. This article covers technical details, impact, and mitigation.

Published: April 17, 2026

CVE-2026-33808 Overview

A critical authentication bypass vulnerability exists in @fastify/express v4.0.4 and earlier that allows unauthenticated attackers to access protected routes by exploiting URL normalization inconsistencies between Fastify and Express middleware. The vulnerability stems from the plugin failing to normalize URLs before passing them to Express middleware when Fastify router normalization options are enabled.

When ignoreDuplicateSlashes or useSemicolonDelimiter options are enabled in Fastify, the router normalizes incoming URLs before matching routes. However, @fastify/express passes the original un-normalized URL to Express middleware. This mismatch allows attackers to craft malicious URLs with duplicate slashes (//) or semicolon delimiters that bypass path-scoped authentication middleware while still matching protected Fastify routes.

Critical Impact

Unauthenticated attackers can completely bypass authentication middleware protecting sensitive routes, potentially gaining unauthorized access to all protected application functionality.

Affected Products

  • @fastify/express v4.0.4 and earlier
  • Applications using Fastify with ignoreDuplicateSlashes option enabled
  • Applications using Fastify with useSemicolonDelimiter option enabled

Discovery Timeline

  • 2026-04-15 - CVE CVE-2026-33808 published to NVD
  • 2026-04-15 - Last updated in NVD database

Technical Details for CVE-2026-33808

Vulnerability Analysis

This vulnerability is classified as CWE-436 (Interpretation Conflict), where two components interpret the same input differently, leading to a security bypass. The root issue lies in how @fastify/express bridges two routing systems with incompatible URL normalization behaviors.

When a Fastify application enables URL normalization options such as ignoreDuplicateSlashes, the Fastify router internally normalizes URLs like //admin//dashboard to /admin/dashboard before route matching. However, the @fastify/express plugin passes the original, un-normalized URL to any registered Express middleware. Express middleware configured to protect /admin paths will not match the malformed //admin path, causing the authentication check to be completely skipped while Fastify still routes the request to the protected handler.

The attack surface extends to any path-based middleware in Express, including session validation, RBAC checks, rate limiting, and logging middleware scoped to specific routes.

Root Cause

The root cause is a failure to synchronize URL normalization between the Fastify routing layer and the Express middleware layer. The @fastify/express plugin does not apply Fastify's normalization logic to URLs before passing them to Express middleware, creating an interpretation conflict between the two systems.

When Fastify normalizes a URL for route matching but @fastify/express provides the original URL to Express middleware, the middleware operates on a different URL than the one Fastify matched, allowing attackers to craft URLs that evade middleware path matching while still reaching protected route handlers.

Attack Vector

The attack exploits URL path manipulation to bypass authentication middleware. When ignoreDuplicateSlashes is enabled, an attacker can access protected routes by inserting duplicate slashes in the URL path. For example, a request to //api//admin//users bypasses Express middleware configured for /api/admin/users because Express receives the un-normalized path while Fastify matches and routes to the protected handler.

Similarly, when useSemicolonDelimiter is enabled, attackers can use semicolon characters in URL paths to achieve the same bypass effect. The attack requires no authentication and can be executed remotely with a simple HTTP request, making it trivial to exploit once discovered.

For detailed technical information about the exploitation mechanism, see the GitHub Fastify Security Advisory.

Detection Methods for CVE-2026-33808

Indicators of Compromise

  • HTTP access logs showing requests with duplicate slashes (//) or semicolons in URL paths to protected endpoints
  • Successful responses (HTTP 200) to malformed URL requests that should require authentication
  • Access to administrative or protected functionality without corresponding authentication events
  • Unusual patterns of requests with path manipulation characters targeting sensitive routes

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and block requests containing duplicate slashes or semicolons in URL paths
  • Monitor application logs for successful access to protected routes without associated authentication tokens or session identifiers
  • Deploy anomaly detection for URL patterns that deviate from expected normalized paths
  • Create SIEM correlation rules matching successful protected route access with missing authentication audit events

Monitoring Recommendations

  • Enable detailed access logging including full request URLs before any normalization
  • Monitor for reconnaissance patterns testing various URL path manipulations against authentication-protected endpoints
  • Set up alerts for sudden increases in requests containing unusual path characters to sensitive endpoints
  • Implement real-time monitoring of authentication bypass attempts through URL manipulation patterns

How to Mitigate CVE-2026-33808

Immediate Actions Required

  • Upgrade @fastify/express to v4.0.5 or later immediately
  • Audit application logs for evidence of exploitation using malformed URL paths
  • Review all Express middleware that relies on URL path matching for security decisions
  • Consider temporarily disabling ignoreDuplicateSlashes and useSemicolonDelimiter options if immediate upgrade is not possible

Patch Information

The vulnerability has been addressed in @fastify/express v4.0.5. The patch ensures that URLs are properly normalized before being passed to Express middleware, eliminating the interpretation conflict between Fastify routing and Express middleware path matching.

Upgrade via npm:

bash
npm update @fastify/express

Verify the installed version:

bash
npm list @fastify/express

For more information, see the GitHub Fastify Security Advisory and the OpenJSF Security Advisories.

Workarounds

  • Disable ignoreDuplicateSlashes and useSemicolonDelimiter Fastify router options until the patch can be applied
  • Implement URL normalization in a custom Fastify hook that runs before Express middleware
  • Add an upstream reverse proxy or WAF rule to normalize or reject URLs with duplicate slashes and semicolons before they reach the application
  • Move authentication logic from Express middleware to Fastify hooks that operate on normalized URLs
bash
# Example: Update @fastify/express to patched version
npm install @fastify/express@^4.0.5

# Verify installation
npm list @fastify/express
# Expected output: @fastify/express@4.0.5 or higher

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/Tech@fastify/express

  • SeverityCRITICAL

  • CVSS Score9.1

  • EPSS Probability0.14%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:H/VI:H/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-436
  • Technical References
  • OpenJSF Security Advisories

  • GitHub Fastify Security Advisory
  • Latest CVEs
  • CVE-2025-49454: TinySalt Path Traversal Vulnerability

  • CVE-2025-48261: MultiVendorX Information Disclosure Flaw

  • CVE-2025-32119: CardGate WooCommerce SQL Injection Flaw

  • CVE-2025-26879: s2Member Plugin Reflected XSS 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