A Leader in the 2025 Gartner® Magic Quadrant™ for Endpoint Protection Platforms. Five years running.A Leader in the Gartner® Magic Quadrant™Read the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI Security Portfolio
      Leading the Way in AI-Powered Security Solutions
    • 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
    • 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
      Digital Forensics, IRR & Breach Readiness
    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
    • 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-25547

CVE-2026-25547: @isaacs/brace-expansion DoS Vulnerability

CVE-2026-25547 is a denial of service flaw in @isaacs/brace-expansion caused by unbounded brace range expansion that can crash Node.js processes. This article covers technical details, affected versions, and mitigation.

Published: February 6, 2026

CVE-2026-25547 Overview

CVE-2026-25547 is a Denial of Service (DoS) vulnerability in @isaacs/brace-expansion, a hybrid CJS/ESM TypeScript fork of the popular brace-expansion library. The vulnerability stems from unbounded brace range expansion, where an attacker can provide a malicious pattern containing repeated numeric brace ranges that causes the library to eagerly generate every possible combination synchronously. Due to exponential growth in expansion, even small malicious inputs can consume excessive CPU and memory resources, potentially crashing the Node.js process.

Critical Impact

Attackers can cause complete denial of service by providing specially crafted brace patterns that trigger exponential resource consumption, potentially crashing Node.js applications and affecting downstream system availability.

Affected Products

  • @isaacs/brace-expansion versions prior to 5.0.1
  • Applications using vulnerable versions of @isaacs/brace-expansion for glob pattern matching
  • Node.js services processing untrusted brace expansion patterns

Discovery Timeline

  • 2026-02-04 - CVE CVE-2026-25547 published to NVD
  • 2026-02-05 - Last updated in NVD database

Technical Details for CVE-2026-25547

Vulnerability Analysis

This vulnerability is classified as CWE-1333 (Inefficient Regular Expression Complexity), specifically manifesting as an algorithmic complexity attack. The @isaacs/brace-expansion library processes brace patterns (e.g., {1..100}) by synchronously generating all possible expansions in memory. When an attacker supplies nested or repeated numeric brace ranges, the library attempts to compute the Cartesian product of all combinations.

The fundamental issue lies in the library's eager evaluation strategy. Unlike lazy evaluation that would generate values on-demand, the synchronous generation approach allocates memory for the entire expansion set before returning results. This design becomes catastrophic when facing intentionally crafted input patterns that exploit the exponential growth characteristics.

Root Cause

The root cause is the lack of bounds checking or resource limits on brace range expansion operations. When processing patterns with numeric ranges, the library does not validate the potential output size before beginning expansion. This allows attackers to craft inputs where the number of combinations grows exponentially with each additional brace pattern, leading to unbounded resource consumption.

For example, a pattern like {1..10}{1..10}{1..10} would generate 1,000 combinations, but adding more range segments causes the output to grow exponentially. Without safeguards, the library will attempt to process arbitrarily large expansions until system resources are exhausted.

Attack Vector

The attack is network-accessible, requiring no authentication or user interaction. An attacker can exploit this vulnerability by sending malicious brace patterns to any application endpoint that processes user-supplied input through the vulnerable @isaacs/brace-expansion library.

The exploitation mechanism involves providing repeated numeric brace ranges that compound exponentially. When the library processes such patterns, it enters a computationally intensive loop, synchronously generating massive arrays that exhaust available memory and CPU cycles. This can cause the Node.js event loop to block, rendering the application unresponsive, or trigger an out-of-memory condition that crashes the process entirely.

The attack requires no special privileges and can be delivered through any input vector that eventually passes through the brace expansion function, such as file path inputs, search patterns, or configuration values.

Detection Methods for CVE-2026-25547

Indicators of Compromise

  • Sudden spikes in Node.js process memory consumption without corresponding legitimate workload
  • CPU utilization reaching 100% on processes handling brace expansion operations
  • Application unresponsiveness or timeout errors in services using pattern matching
  • Out-of-memory errors or process crashes in Node.js applications
  • Unusual patterns containing multiple nested brace ranges in application logs

Detection Strategies

  • Monitor Node.js process memory and CPU metrics for anomalous consumption patterns
  • Implement input validation logging to detect malicious brace patterns before processing
  • Deploy application-level monitoring to track brace expansion function execution times
  • Use dependency scanning tools to identify vulnerable versions of @isaacs/brace-expansion

Monitoring Recommendations

  • Configure alerting for Node.js heap memory exceeding normal operational thresholds
  • Implement request timeout monitoring to detect blocked event loop conditions
  • Enable process crash logging and monitoring for OOM (out-of-memory) kill events
  • Track dependency versions in CI/CD pipelines to prevent deployment of vulnerable packages

How to Mitigate CVE-2026-25547

Immediate Actions Required

  • Upgrade @isaacs/brace-expansion to version 5.0.1 or later immediately
  • Audit applications to identify all instances of the vulnerable package in dependencies
  • Implement input validation to reject or sanitize brace patterns from untrusted sources
  • Consider implementing request timeouts and resource limits at the application level

Patch Information

The vulnerability has been patched in @isaacs/brace-expansion version 5.0.1. Organizations should update their dependencies to this version or later to remediate the vulnerability. The patch introduces bounds checking to prevent unbounded expansion of brace ranges.

For detailed information about the security fix, refer to the GitHub Security Advisory.

Workarounds

  • Implement input length restrictions on patterns before passing to brace expansion functions
  • Add preprocessing validation to reject patterns containing excessive or nested brace ranges
  • Deploy rate limiting on endpoints that process user-supplied patterns
  • Consider using alternative libraries with built-in expansion limits until upgrade is possible
bash
# Update the package to the patched version
npm update @isaacs/brace-expansion@5.0.1

# Or install the specific patched version
npm install @isaacs/brace-expansion@5.0.1 --save

# Verify the installed version
npm list @isaacs/brace-expansion

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechNodejs

  • SeverityCRITICAL

  • CVSS Score9.2

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:H/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
  • AvailabilityHigh
  • CWE References
  • CWE-1333
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-22036: Node.js Undici DoS Vulnerability

  • CVE-2026-21637: Node.js TLS Error Handling DoS Vulnerability

  • CVE-2024-22019: Node.js HTTP Server DoS Vulnerability

  • CVE-2023-30588: Node.js X509 Certificate DoS Vulnerability
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
  • English
  • 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