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

CVE-2026-33671: Picomatch ReDoS Denial of Service Vulnerability

CVE-2026-33671 is a Regular Expression Denial of Service flaw in Picomatch that allows attackers to cause excessive CPU consumption via crafted extglob patterns. This article covers technical details, affected versions, and mitigation.

Published: March 27, 2026

CVE-2026-33671 Overview

CVE-2026-33671 is a Regular Expression Denial of Service (ReDoS) vulnerability affecting Picomatch, a popular JavaScript glob matcher library. The vulnerability exists in versions prior to 4.0.4, 3.0.2, and 2.3.2, where crafted extglob patterns can trigger catastrophic backtracking in the compiled regular expressions, leading to denial of service conditions.

Critical Impact

Attackers can exploit this vulnerability to cause excessive CPU consumption and block the Node.js event loop by supplying malicious glob patterns, resulting in application-wide denial of service.

Affected Products

  • Picomatch versions prior to 4.0.4
  • Picomatch versions prior to 3.0.2
  • Picomatch versions prior to 2.3.2

Discovery Timeline

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

Technical Details for CVE-2026-33671

Vulnerability Analysis

This vulnerability stems from inefficient regular expression handling in Picomatch's extglob pattern compilation. When processing certain extglob patterns that contain quantifiers such as +() and *(), especially when combined with overlapping alternatives or nested extglobs, the library compiles these into regular expressions susceptible to catastrophic backtracking.

The core issue is a classic ReDoS scenario (CWE-1333) where the regex engine's backtracking behavior becomes exponentially complex on non-matching input strings. Applications that expose glob pattern compilation to untrusted user input are particularly vulnerable, as an attacker can craft patterns that cause the Node.js event loop to become blocked during regex evaluation.

Root Cause

The root cause is the compilation of user-supplied extglob patterns into regular expressions without adequate safeguards against patterns that can exhibit exponential time complexity. The recursive nature of nested extglobs combined with quantifiers creates regex patterns where the number of possible matching paths grows exponentially with input length.

Attack Vector

The attack vector is network-based and requires no authentication or user interaction. An attacker can exploit this vulnerability by submitting crafted glob patterns to any application endpoint that passes user-supplied patterns to Picomatch for compilation or matching. The patterns specifically target the extglob syntax with constructs like +(pattern) and *(pattern) that, when nested or combined with overlapping alternatives, produce regex patterns vulnerable to catastrophic backtracking.

javascript
const WIN_SLASH = '\\\\\\\\/';\n const WIN_NO_SLASH = `[^${WIN_SLASH}]`;\n \n+const DEFAULT_MAX_EXTGLOB_RECURSION = 0;\n+\n /**\n  * Posix glob regex\n  */

Source: GitHub Commit Log

The security patch introduces a DEFAULT_MAX_EXTGLOB_RECURSION constant set to 0, which limits the depth of extglob recursion to prevent the construction of exponentially complex regular expressions.

Detection Methods for CVE-2026-33671

Indicators of Compromise

  • Abnormally high CPU utilization in Node.js processes handling glob pattern matching
  • Application timeouts or unresponsiveness in endpoints that accept glob patterns
  • Blocked event loops causing cascading failures in Node.js applications
  • Error logs indicating regex evaluation timeouts or process hangs

Detection Strategies

  • Monitor for requests containing deeply nested extglob patterns such as +(), *(), @(), !(), or ?()
  • Implement regex complexity analysis on incoming glob patterns before passing to Picomatch
  • Set up application performance monitoring to detect sudden CPU spikes during pattern matching operations
  • Audit dependencies using npm audit or similar tools to identify vulnerable Picomatch versions

Monitoring Recommendations

  • Deploy Node.js process monitoring to track event loop lag and CPU utilization
  • Implement request-level timeouts for endpoints that accept and process glob patterns
  • Configure alerting thresholds for abnormal regex evaluation times
  • Monitor application logs for patterns indicative of ReDoS attempts

How to Mitigate CVE-2026-33671

Immediate Actions Required

  • Upgrade Picomatch to version 4.0.4, 3.0.2, or 2.3.2 depending on your supported release line
  • Audit application code to identify all locations where user-supplied input is passed to Picomatch
  • Implement input validation to reject or sanitize glob patterns containing nested extglobs or extglob quantifiers
  • Consider running glob matching operations in isolated workers or separate processes with time limits

Patch Information

The vulnerability has been patched in Picomatch versions 4.0.4, 3.0.2, and 2.3.2. The fix introduces recursion limits for extglob pattern processing. Users should upgrade to the appropriate patched version for their release line. For detailed patch information, see the GitHub Security Advisory and the security commit.

Workarounds

  • Disable extglob support for untrusted patterns by setting noextglob: true in Picomatch options
  • Enforce strict allowlists for accepted pattern syntax in user-facing endpoints
  • Apply application-level request throttling and input validation for endpoints accepting glob patterns
  • Run pattern matching in isolated worker threads or separate processes with resource limits
bash
# Update picomatch to patched version
npm update picomatch@latest

# Or install specific patched version
npm install picomatch@4.0.4

# Audit for vulnerable dependencies
npm audit

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechPicomatch

  • SeverityHIGH

  • CVSS Score7.5

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

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-33672: Picomatch Method Injection 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