The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
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
    • 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-21714

CVE-2026-21714: Node.js HTTP/2 Memory Leak DoS Vulnerability

CVE-2026-21714 is a denial of service vulnerability in Node.js HTTP/2 servers caused by memory leaks from malicious WINDOW_UPDATE frames. This article covers the technical details, affected versions, and mitigation.

Published: April 3, 2026

CVE-2026-21714 Overview

A memory leak vulnerability exists in Node.js HTTP/2 servers when processing malformed WINDOW_UPDATE frames. When a client sends WINDOW_UPDATE frames on stream 0 (connection-level) that cause the flow control window to exceed the maximum value of 2³¹-1, the server correctly sends a GOAWAY frame to terminate the connection. However, due to improper resource cleanup, the Http2Session object is never deallocated, leading to memory exhaustion over time.

This vulnerability is classified as CWE-401 (Missing Release of Memory after Effective Lifetime), a memory management flaw that can result in denial of service conditions when exploited repeatedly.

Critical Impact

Attackers can exhaust server memory by repeatedly establishing HTTP/2 connections and sending malicious WINDOW_UPDATE frames, causing denial of service without authentication.

Affected Products

  • Node.js 20.x (HTTP/2 servers)
  • Node.js 22.x (HTTP/2 servers)
  • Node.js 24.x (HTTP/2 servers)
  • Node.js 25.x (HTTP/2 servers)

Discovery Timeline

  • 2026-03-30 - CVE CVE-2026-21714 published to NVD
  • 2026-04-01 - Last updated in NVD database

Technical Details for CVE-2026-21714

Vulnerability Analysis

The vulnerability resides in the HTTP/2 implementation within Node.js, specifically in how the server handles connection-level flow control. HTTP/2 uses flow control windows to manage data transmission rates between client and server. The flow control window is a 32-bit unsigned integer that tracks how much data can be sent.

When a client sends WINDOW_UPDATE frames targeting stream 0 (the connection-level stream), these frames increment the flow control window. The HTTP/2 specification mandates that this window cannot exceed 2³¹-1 bytes. Node.js correctly detects this overflow condition and responds with a GOAWAY frame to gracefully terminate the connection.

However, the vulnerability occurs in the cleanup path following this GOAWAY frame transmission. The Http2Session object, which encapsulates the connection state, associated buffers, and stream metadata, is not properly released from memory. Each failed connection leaves orphaned session objects that accumulate over time.

Root Cause

The root cause is a missing deallocation of the Http2Session object in the error handling path when a GOAWAY frame is sent due to flow control window overflow. The cleanup routine that normally releases session resources is bypassed when this specific error condition triggers the connection termination. This constitutes a classic CWE-401 vulnerability where memory allocated during session creation is never freed after the session becomes invalid.

Attack Vector

An attacker can exploit this vulnerability remotely over the network without any authentication or user interaction. The attack methodology involves:

  1. Establishing an HTTP/2 connection to the target Node.js server
  2. Sending multiple WINDOW_UPDATE frames on stream 0 with large window size increments
  3. Continuing until the cumulative window size exceeds 2³¹-1
  4. Repeating the process with new connections to accumulate orphaned sessions

The attack is particularly effective because the server performs the computationally expensive work of session creation and then fails to reclaim those resources. An attacker with modest bandwidth can trigger significant memory consumption on the server by cycling through connections rapidly.

Detection Methods for CVE-2026-21714

Indicators of Compromise

  • Unusual volume of HTTP/2 connections with very short lifespans and GOAWAY terminations
  • Server memory usage gradually increasing without corresponding increase in legitimate traffic
  • Elevated count of WINDOW_UPDATE frames in HTTP/2 traffic logs targeting stream 0
  • Connection reset patterns following rapid WINDOW_UPDATE frame sequences

Detection Strategies

  • Monitor HTTP/2 server processes for steadily increasing memory consumption (RSS/heap growth)
  • Analyze HTTP/2 frame logs for anomalous WINDOW_UPDATE patterns on connection-level streams
  • Implement alerting on GOAWAY frames triggered by flow control overflow errors
  • Deploy application performance monitoring to track Http2Session object counts

Monitoring Recommendations

  • Enable verbose HTTP/2 logging to capture frame-level details for forensic analysis
  • Set memory utilization thresholds for Node.js processes with automated alerts
  • Track connection establishment and termination rates to identify attack patterns
  • Monitor for connections that send excessive WINDOW_UPDATE frames before data transfer

How to Mitigate CVE-2026-21714

Immediate Actions Required

  • Upgrade Node.js to the patched version as referenced in the Node.js March 2026 Security Blog
  • Implement rate limiting on incoming HTTP/2 connections to slow potential exploitation
  • Configure maximum connection limits per client IP address
  • Monitor server memory usage and configure automatic process recycling if thresholds are exceeded

Patch Information

The Node.js team has released security updates addressing this vulnerability. Detailed patch information and affected version ranges are available in the Node.js March 2026 Security Blog. Organizations should prioritize updating to patched versions of Node.js 20, 22, 24, and 25.

Workarounds

  • If HTTP/2 is not required, disable it and use HTTP/1.1 until patches can be applied
  • Deploy a reverse proxy (such as nginx or HAProxy) that handles HTTP/2 termination and forwards HTTP/1.1 to Node.js
  • Implement connection rate limiting at the network or load balancer level
  • Configure operating system-level memory limits for Node.js processes to prevent complete resource exhaustion

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechNodejs

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-401
  • Technical References
  • Node.js March 2026 Security Blog
  • Related CVEs
  • CVE-2026-21712: Node.js URL Processing DoS Vulnerability

  • CVE-2026-21710: Node.js HTTP DOS Vulnerability

  • CVE-2026-1526: Undici WebSocket Client DoS Vulnerability

  • CVE-2026-25547: @isaacs/brace-expansion 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
  • 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