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-2025-23085

CVE-2025-23085: Node.js HTTP/2 Server DoS Vulnerability

CVE-2025-23085 is a denial of service flaw in Node.js HTTP/2 Server caused by memory leaks when peers close connections abruptly. This article covers the technical details, affected versions, impact, and mitigation.

Updated: January 22, 2026

CVE-2025-23085 Overview

CVE-2025-23085 is a memory leak vulnerability affecting Node.js HTTP/2 server implementations. The flaw occurs when a remote peer abruptly closes the socket without sending a proper GOAWAY notification, or when an invalid header is detected by nghttp2, causing the connection to be terminated. This vulnerability can lead to increased memory consumption and potential denial of service conditions on affected Node.js servers.

Critical Impact

Attackers can exploit this memory leak to gradually exhaust server memory resources, potentially causing denial of service on Node.js HTTP/2 servers without requiring authentication.

Affected Products

  • Node.js v18.x (HTTP/2 Server)
  • Node.js v20.x (HTTP/2 Server)
  • Node.js v22.x (HTTP/2 Server)
  • Node.js v23.x (HTTP/2 Server)

Discovery Timeline

  • 2025-02-07 - CVE-2025-23085 published to NVD
  • 2025-11-03 - Last updated in NVD database

Technical Details for CVE-2025-23085

Vulnerability Analysis

This memory leak vulnerability (CWE-401: Missing Release of Memory after Effective Lifetime) affects the HTTP/2 implementation in Node.js. When handling HTTP/2 connections, the server fails to properly release allocated memory under two specific conditions: when a remote peer closes the socket abruptly without sending a GOAWAY frame, or when nghttp2 detects an invalid header that causes connection termination.

The HTTP/2 protocol relies on the GOAWAY frame to gracefully signal the termination of a connection. When this notification is absent due to an abrupt disconnection, the cleanup routines that would normally free associated memory resources are not properly triggered. Similarly, when nghttp2 encounters malformed headers and terminates the connection, the same memory cleanup path is bypassed.

Root Cause

The root cause is improper memory management in the HTTP/2 connection handling code. Specifically, the implementation fails to release allocated memory buffers when connections are terminated unexpectedly. The nghttp2 library integration does not account for all edge cases where memory should be deallocated, particularly during error conditions and abrupt connection closures.

Attack Vector

This vulnerability is exploitable over the network without requiring authentication or user interaction. An attacker can repeatedly establish HTTP/2 connections to a vulnerable Node.js server and then abruptly terminate those connections without sending proper GOAWAY notifications. Alternatively, an attacker can send requests with deliberately malformed headers to trigger the nghttp2 error path.

By repeatedly triggering either condition, an attacker can cause progressive memory exhaustion on the target server. Over time, this can degrade server performance and eventually lead to denial of service as the system runs out of available memory.

Detection Methods for CVE-2025-23085

Indicators of Compromise

  • Unusual memory growth patterns on Node.js HTTP/2 servers without corresponding increases in legitimate traffic
  • High volume of incomplete HTTP/2 connection attempts from specific source IPs
  • Elevated rates of HTTP/2 connection resets without proper GOAWAY frames in network captures
  • Increased occurrence of nghttp2 header validation errors in application logs

Detection Strategies

  • Monitor Node.js process memory usage for steady increases that do not correlate with legitimate workload patterns
  • Implement connection rate limiting and track sources with abnormally high connection establishment rates
  • Enable detailed HTTP/2 session logging to capture connection termination events and identify missing GOAWAY notifications
  • Deploy network intrusion detection rules to identify patterns of malformed HTTP/2 headers

Monitoring Recommendations

  • Set up memory threshold alerts for Node.js processes running HTTP/2 servers
  • Implement application performance monitoring (APM) to track memory allocation patterns over time
  • Configure log aggregation to correlate connection termination events across multiple server instances
  • Establish baseline memory usage metrics to identify anomalous consumption patterns

How to Mitigate CVE-2025-23085

Immediate Actions Required

  • Upgrade Node.js to the latest patched version addressing this vulnerability
  • Implement connection rate limiting at the load balancer or reverse proxy level to reduce exposure
  • Configure memory limits for Node.js processes to prevent complete resource exhaustion
  • Consider temporarily disabling HTTP/2 if not operationally required until patching is complete

Patch Information

Node.js has released security updates addressing this vulnerability in the January 2025 security releases. Administrators should consult the Node.js January 2025 Security Releases for specific patched versions and upgrade instructions. Additional security advisories are available from Debian LTS and NetApp.

Workarounds

  • Deploy a reverse proxy (such as nginx or HAProxy) in front of Node.js servers to handle HTTP/2 termination
  • Implement aggressive connection timeout policies to limit the window for memory accumulation
  • Configure process managers to automatically restart Node.js processes when memory thresholds are exceeded
  • Use HTTP/1.1 instead of HTTP/2 until patches can be applied to eliminate the vulnerable code path
bash
# Example: Configure Node.js memory limit and monitoring
# Set maximum heap size to limit memory consumption
NODE_OPTIONS="--max-old-space-size=2048" node server.js

# Enable HTTP/2 session debugging for monitoring
NODE_DEBUG=http2 node server.js

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.10%

  • 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 January 2025 Releases

  • Debian LTS Security Notice

  • NetApp Security Advisory NTAP-20250321-0003
  • Related CVEs
  • CVE-2026-21712: Node.js URL Processing DoS Vulnerability

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

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

  • CVE-2026-1526: Undici WebSocket Client DoS 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