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

CVE-2026-4923: Path Routing ReDoS Vulnerability

CVE-2026-4923 is a denial of service vulnerability affecting path routing with multiple wildcards and parameters. Attackers can exploit ReDoS patterns to cause service disruption. This article covers technical details, safe patterns, affected versions, and mitigation strategies.

Published: March 27, 2026

CVE-2026-4923 Overview

CVE-2026-4923 is a Regular Expression Denial of Service (ReDoS) vulnerability that occurs when using multiple wildcards combined with at least one parameter in path routing configurations. The vulnerability stems from inefficient regular expression patterns that can be exploited to cause catastrophic backtracking, leading to denial of service conditions.

Critical Impact

This vulnerability allows remote attackers to cause a denial of service by sending specially crafted path requests that trigger exponential regex backtracking, potentially rendering the affected application unresponsive.

Affected Products

  • Path routing implementations using multiple wildcard parameters
  • Applications using vulnerable regex pattern generation with wildcards
  • Web frameworks utilizing affected path matching logic

Discovery Timeline

  • 2026-03-26 - CVE CVE-2026-4923 published to NVD
  • 2026-03-26 - Last updated in NVD database

Technical Details for CVE-2026-4923

Vulnerability Analysis

This vulnerability falls under CWE-1333 (Inefficient Regular Expression Complexity), which describes scenarios where regular expressions with certain patterns can experience exponential time complexity during evaluation. The ReDoS condition manifests specifically when multiple wildcard patterns are used in conjunction with at least one route parameter.

The key condition for exploitation is that the second wildcard must be positioned somewhere other than the end of the path. This placement creates ambiguity in the regex matching that leads to excessive backtracking when processing malicious input.

Unsafe path patterns include structures like /*foo-*bar-:baz, /*a-:b-*c-:d, and /x/*a-:b/*c/y. In contrast, patterns such as /*foo-:bar and /*foo-:bar-*baz are safe because the wildcard positioning does not create the backtracking condition.

Root Cause

The root cause lies in the regular expression generation logic used for path matching. When multiple wildcards are combined with parameters, the generated regex contains patterns that can match the same input in multiple ways. This ambiguity forces the regex engine to explore numerous matching possibilities through backtracking, which grows exponentially with input length.

Attack Vector

The attack can be executed remotely over the network without any authentication or user interaction. An attacker can craft HTTP requests with specially designed path segments that trigger the vulnerable regex patterns. By sending paths with carefully constructed strings that maximize backtracking iterations, an attacker can consume excessive CPU resources on the server, effectively causing a denial of service.

The vulnerability is exploitable when:

  1. The application uses multiple wildcard patterns in route definitions
  2. The second wildcard is not positioned at the end of the path
  3. At least one parameter is included in the pattern

Attackers can verify vulnerable patterns using regex analysis tools to confirm which paths exhibit the ReDoS characteristics before launching an attack.

Detection Methods for CVE-2026-4923

Indicators of Compromise

  • Unusual CPU spikes correlated with incoming HTTP requests containing long or repetitive path segments
  • Application response times degrading significantly for specific URL patterns
  • Web server logs showing requests with abnormally long path components
  • Memory consumption increases during request processing for certain routes

Detection Strategies

  • Monitor application performance metrics for sudden CPU utilization spikes during request processing
  • Implement request timeout mechanisms to detect and terminate long-running regex evaluations
  • Analyze route configurations to identify patterns matching the vulnerable wildcard structure
  • Use regex analysis tools such as the ReCheck playground to audit path patterns

Monitoring Recommendations

  • Configure alerting for HTTP requests exceeding normal processing time thresholds
  • Implement rate limiting on endpoints using complex path matching patterns
  • Monitor server resource utilization with correlation to incoming request patterns
  • Enable detailed logging for route matching operations to identify problematic patterns

How to Mitigate CVE-2026-4923

Immediate Actions Required

  • Audit all route definitions for patterns using multiple wildcards with intermediate parameters
  • Upgrade to version 8.4.0 or later which contains the security patch
  • Test existing routes with regex analysis tools to identify vulnerable patterns
  • Implement request timeouts as a temporary protective measure

Patch Information

The vendor has released version 8.4.0 which addresses this vulnerability. Organizations should upgrade to this version or later to remediate the ReDoS condition. For additional details, consult the OpenJS Foundation Security Advisories.

Workarounds

  • Restructure route patterns to avoid having multiple wildcards where the second is not at the end of the path
  • Test all wildcard parameter combinations using regex analysis tools like ReCheck before deployment
  • Implement request timeout mechanisms to limit the impact of potential ReDoS attacks
  • Consider using alternative path matching strategies that do not rely on complex regex patterns
bash
# Configuration example - Implementing request timeout as a protective measure
# For Node.js applications using Express:
# server.setTimeout(5000); # Set 5 second timeout for requests

# Verify route patterns are safe by avoiding structures like:
# UNSAFE: /*foo-*bar-:baz
# UNSAFE: /*a-:b-*c-:d
# SAFE:   /*foo-:bar
# SAFE:   /*foo-:bar-*baz

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechN/A

  • SeverityMEDIUM

  • CVSS Score5.9

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-1333
  • Technical References
  • OpenJS Foundation Security Advisories
  • Latest CVEs
  • CVE-2025-11419: Keycloak TLS DoS Vulnerability

  • CVE-2025-13947: WebKitGTK Information Disclosure Flaw

  • CVE-2026-40322: SiYuan Knowledge Management RCE Vulnerability

  • CVE-2026-40318: SiYuan Path Traversal 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