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

CVE-2025-59465: Node.js HTTP/2 HPACK DOS Vulnerability

CVE-2025-59465 is a denial of service flaw in Node.js HTTP/2 caused by malformed HEADERS frames with invalid HPACK data. Attackers can crash the server remotely. This article covers technical details, impact, and mitigation.

Published: January 23, 2026

CVE-2025-59465 Overview

A malformed HTTP/2 HEADERS frame with oversized, invalid HPACK data can cause Node.js to crash by triggering an unhandled TLSSocket error ECONNRESET. Instead of safely closing the connection, the process crashes, enabling a remote denial of service. This primarily affects applications that do not attach explicit error handlers to secure sockets.

Critical Impact

Remote attackers can crash Node.js servers by sending specially crafted HTTP/2 HEADERS frames, causing complete service disruption without authentication.

Affected Products

  • Node.js applications using HTTP/2 with TLS
  • Node.js servers without explicit TLSSocket error handlers
  • Applications relying on secure HTTP/2 connections

Discovery Timeline

  • 2026-01-20 - CVE CVE-2025-59465 published to NVD
  • 2026-01-21 - Last updated in NVD database

Technical Details for CVE-2025-59465

Vulnerability Analysis

This vulnerability is classified under CWE-400 (Uncontrolled Resource Consumption) and represents a Denial of Service condition in Node.js's HTTP/2 implementation. The flaw occurs when processing malformed HTTP/2 HEADERS frames containing oversized or invalid HPACK-encoded data.

When a Node.js server receives such a malicious frame over a TLS connection, the underlying TLSSocket triggers an ECONNRESET error. If the application has not registered an explicit error handler for the secureConnection event on the socket, this error propagates as an unhandled exception, causing the entire Node.js process to crash.

The vulnerability is particularly dangerous because it can be exploited remotely without any authentication. An attacker simply needs to establish an HTTP/2 connection to the target server and send a crafted HEADERS frame. The attack does not require any special privileges or user interaction, making it trivially exploitable across the network.

Root Cause

The root cause lies in Node.js's failure to gracefully handle malformed HPACK data within HTTP/2 HEADERS frames at the TLS socket level. Instead of catching the error internally and closing the connection safely, the error bubbles up through the socket layer. Applications that follow common coding patterns without attaching explicit error handlers to each secure socket connection are vulnerable to complete process termination.

The issue manifests specifically in applications that do not implement error handling similar to:

javascript
server.on('secureConnection', socket => {
  socket.on('error', err => {
    console.log(err)
  })
})

Attack Vector

The attack vector is network-based and requires no authentication or user interaction. An attacker can exploit this vulnerability by:

  1. Establishing an HTTP/2 connection to a vulnerable Node.js server over TLS
  2. Crafting an HTTP/2 HEADERS frame with oversized or malformed HPACK data
  3. Sending the malicious frame to the server
  4. The server processes the frame, triggering the ECONNRESET error on the TLSSocket
  5. Without an explicit error handler, the unhandled error crashes the Node.js process

This attack can be repeated to keep the service unavailable, causing sustained denial of service conditions. The simplicity of the attack and its network accessibility make it a significant threat to production Node.js deployments.

Detection Methods for CVE-2025-59465

Indicators of Compromise

  • Sudden Node.js process crashes with ECONNRESET errors in TLS socket handling
  • Unusual HTTP/2 connection patterns with malformed HEADERS frames in network traffic
  • Application logs showing unhandled exceptions originating from TLSSocket events
  • Repeated service restarts without corresponding application-level errors

Detection Strategies

  • Monitor for ECONNRESET errors specifically associated with HTTP/2 TLS connections
  • Implement application-level logging that captures unhandled socket errors before process termination
  • Deploy network intrusion detection rules to identify malformed HTTP/2 HEADERS frames with abnormal HPACK data sizes
  • Use process monitoring to detect unexpected Node.js crashes and correlate with incoming network connections

Monitoring Recommendations

  • Enable verbose logging for HTTP/2 and TLS subsystems in Node.js applications
  • Configure process managers (PM2, systemd) to alert on repeated crash-restart cycles
  • Implement application performance monitoring (APM) to track TLS socket error rates
  • Review network traffic for anomalous HTTP/2 frame patterns, particularly oversized HEADERS frames

How to Mitigate CVE-2025-59465

Immediate Actions Required

  • Add explicit error handlers to all secureConnection socket events in HTTP/2 server implementations
  • Review and update Node.js to the patched version as specified in the security advisory
  • Implement process-level supervision to automatically restart crashed services while patches are deployed
  • Consider temporarily disabling HTTP/2 if the application can function with HTTP/1.1

Patch Information

Node.js has released security patches addressing this vulnerability. Organizations should consult the Node.js December 2025 Security Releases for specific patch versions and upgrade instructions. Apply the security update to all affected Node.js installations immediately.

Workarounds

  • Implement explicit error handlers on all TLSSocket instances used with HTTP/2 connections
  • Deploy a reverse proxy or load balancer that can filter malformed HTTP/2 frames before they reach Node.js
  • Use rate limiting on HTTP/2 connections to reduce the impact of repeated crash attempts
  • Consider containerization with automatic restart policies to minimize service downtime during attacks
javascript
// Workaround: Add explicit error handler to prevent crashes
server.on('secureConnection', socket => {
  socket.on('error', err => {
    // Log the error and close the socket gracefully
    console.error('TLSSocket error:', err.message);
    socket.destroy();
  });
});

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechNode.js

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-400
  • Technical References
  • Node.js December 2025 Vulnerability Blog
  • Related CVEs
  • CVE-2026-21715: Node.js Privilege Escalation Vulnerability

  • CVE-2026-21713: Node.js Timing Attack Vulnerability

  • CVE-2026-26974: Slyde Presentation Tool RCE Vulnerability

  • CVE-2025-55131: Node.js Information Disclosure 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