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

CVE-2026-22036: Node.js Undici DoS Vulnerability

CVE-2026-22036 is a denial of service vulnerability in Node.js Undici that allows malicious servers to cause high CPU usage and memory exhaustion. This article covers technical details, affected versions, and mitigation.

Published: January 23, 2026

CVE-2026-22036 Overview

CVE-2026-22036 is a resource exhaustion vulnerability affecting Undici, a popular HTTP/1.1 client for Node.js. The vulnerability exists due to improper allocation of resources without limits (CWE-770), where the number of links in the decompression chain is unbounded. Combined with the default maxHeaderSize configuration, a malicious server can insert thousands of compression steps into the decompression chain, leading to excessive CPU usage and memory allocation, ultimately resulting in a denial of service condition.

Critical Impact

A malicious server can cause denial of service in Node.js applications using vulnerable Undici versions through unbounded decompression chain exploitation, leading to high CPU consumption and memory exhaustion.

Affected Products

  • Node.js Undici versions prior to 7.18.0
  • Node.js Undici versions prior to 6.23.0

Discovery Timeline

  • 2026-01-14 - CVE CVE-2026-22036 published to NVD
  • 2026-01-22 - Last updated in NVD database

Technical Details for CVE-2026-22036

Vulnerability Analysis

This vulnerability is classified as a Resource Exhaustion (Denial of Service) issue stemming from improper resource allocation without limits. The core problem lies in the Undici HTTP client's handling of compressed HTTP responses.

When Undici receives compressed responses (e.g., gzip, deflate, or br encoding), it processes them through a decompression chain. The vulnerability arises because there is no upper bound enforced on the number of compression layers that can be chained together. A malicious server can craft responses with an extremely deep decompression chain, containing thousands of nested compression steps.

The default maxHeaderSize configuration does not adequately protect against this attack vector, allowing malicious content-encoding headers to specify an excessive number of compression transformations. When Undici attempts to process such a response, each decompression step consumes CPU cycles and allocates memory, quickly exhausting system resources.

Root Cause

The root cause is the absence of a limit on the decompression chain depth in the HTTP response handling logic. The Undici client trusts the server-provided Content-Encoding headers without validating the total number of compression layers, allowing an attacker-controlled server to specify arbitrarily deep chains. This constitutes an improper allocation of resources without limits, as defined by CWE-770.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker needs to control or compromise a server that a vulnerable Undici client connects to. The attack flow involves:

  1. The attacker sets up or compromises a server that the target application communicates with
  2. When the Undici client makes an HTTP request, the malicious server responds with headers specifying thousands of compression transformations
  3. The Undici client attempts to process the decompression chain sequentially
  4. Each decompression step allocates memory and consumes CPU, rapidly exhausting available resources
  5. The Node.js application becomes unresponsive or crashes due to memory exhaustion or CPU saturation

The vulnerability is particularly dangerous in microservices architectures where applications frequently make outbound HTTP requests to external services, as a single malicious endpoint can impact the entire application availability.

Detection Methods for CVE-2026-22036

Indicators of Compromise

  • Abnormal CPU spikes in Node.js processes when making outbound HTTP requests
  • Rapidly increasing memory consumption in applications using Undici
  • Application hangs or timeouts when connecting to specific external endpoints
  • Unusual Content-Encoding headers with multiple compression schemes in HTTP response logs

Detection Strategies

  • Monitor Node.js process resource utilization for anomalous CPU or memory consumption patterns
  • Implement application-level logging to track HTTP response headers, particularly Content-Encoding values
  • Use dependency scanning tools to identify applications running vulnerable Undici versions (prior to 7.18.0 or 6.23.0)
  • Configure network monitoring to detect responses with unusually complex Content-Encoding header chains

Monitoring Recommendations

  • Set up alerts for Node.js applications exceeding baseline CPU or memory thresholds during HTTP operations
  • Implement health checks that can detect application unresponsiveness related to HTTP client operations
  • Review HTTP response patterns from external services for potential malicious compression configurations
  • Deploy software composition analysis (SCA) tools to continuously monitor for vulnerable Undici versions across your environment

How to Mitigate CVE-2026-22036

Immediate Actions Required

  • Upgrade Undici to version 7.18.0 or later for the 7.x branch
  • Upgrade Undici to version 6.23.0 or later for the 6.x branch
  • Audit all Node.js applications to identify those using vulnerable Undici versions
  • Consider temporarily disabling automatic decompression if patching is not immediately feasible

Patch Information

The vulnerability has been addressed by the Node.js team in Undici versions 7.18.0 and 6.23.0. The fix introduces proper limits on the decompression chain depth, preventing resource exhaustion attacks. The security patch is available in the GitHub Commit Details. Additional details about the vulnerability and remediation are provided in the GitHub Security Advisory.

Organizations should prioritize updating Undici across all affected applications. The update can be applied through standard npm package management:

Workarounds

  • If immediate patching is not possible, implement network-level controls to limit connections to trusted external services only
  • Consider using a reverse proxy that validates and limits Content-Encoding header complexity before requests reach Node.js applications
  • Implement application-level resource limits using Node.js --max-old-space-size to prevent complete system exhaustion
  • Monitor and terminate requests that exceed reasonable processing time thresholds
bash
# Update Undici to patched version (7.x branch)
npm update undici@7.18.0

# Or for 6.x branch
npm update undici@6.23.0

# Verify installed version
npm list undici

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechNodejs

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.06%

  • 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-770
  • Vendor Resources
  • GitHub Commit Details

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-25547: @isaacs/brace-expansion 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