
Cloud Vulnerability DB
A community-led vulnerabilities database
CVE-2025-59465 is a denial-of-service vulnerability in Node.js's HTTP/2 server implementation, titled "Node.js HTTP/2 server crashes with unhandled error when receiving malformed HEADERS frame." A remote, unauthenticated attacker can send a malformed HTTP/2 HEADERS frame containing oversized, invalid HPACK data, causing the Node.js process to crash via an unhandled TLSSocket error (ECONNRESET). The vulnerability affects Node.js versions 20.x before 20.20.0, 22.x before 22.22.0, 24.x before 24.13.0, and 25.x before 25.3.0, and was disclosed on January 20, 2026. It carries a CVSS v3.0 base score of 7.5 (High), assigned by HackerOne (Node.js Advisory, Red Hat).
The root cause is an uncaught exception (CWE-248) combined with uncontrolled resource consumption (CWE-400) in Node.js's HTTP/2 handling layer. When a malformed HEADERS frame with oversized, invalid HPACK data is received over a TLS connection, the internal HPACK decompression triggers an ECONNRESET error on the TLSSocket. Because Node.js does not attach a default error handler to the socket in this code path, the error propagates as an unhandled exception and crashes the entire process rather than safely closing the connection. The vulnerability primarily affects applications that omit explicit error listeners on secure sockets (e.g., via the secureConnection event), and is exploitable over the network with no authentication or user interaction required (Node.js Advisory, Red Hat Bugzilla).
Successful exploitation causes the Node.js server process to crash entirely, resulting in complete loss of availability for any application running on the affected instance. Because the crash terminates the process rather than just closing the offending connection, all active connections and in-flight requests are dropped simultaneously. There is no confidentiality or integrity impact — the vulnerability is purely a denial-of-service issue — but repeated exploitation can keep a service continuously unavailable (Node.js Advisory, Red Hat).
There is no public proof-of-concept exploit code and no evidence of in-the-wild exploitation at this time (Red Hat). The vulnerability is unauthenticated and network-accessible with low attack complexity, making it straightforward to trigger once the attack vector is understood. The EPSS score is approximately 0.047%, indicating a low current probability of exploitation in the wild. The vulnerability is not listed in the CISA Known Exploited Vulnerabilities (KEV) catalog. No threat actor attribution has been reported.
ECONNRESET error on the TLSSocket.ECONNRESET or unhandled error stack traces in application logs immediately before crash.The primary remediation is to upgrade Node.js to a patched version: 20.20.0, 22.22.0, 24.13.0, or 25.3.0 (or later) (Node.js Advisory). As a workaround for applications that cannot be immediately upgraded, attach explicit error handlers to secure sockets via the secureConnection event to prevent unhandled errors from crashing the process:
server.on('secureConnection', socket => {
socket.on('error', err => {
console.error(err);
});
});Red Hat has issued multiple errata (RHSA-2026:1842, RHSA-2026:1843, RHSA-2026:2420–2422, RHSA-2026:2767–2768, RHSA-2026:2781–2783, RHSA-2026:2864, RHSA-2026:2899) for RHEL 8, 9, and 10 (Red Hat Bugzilla). IBM has also released patches for affected products including Instana OnPrem and Cloud Pak for Business Automation (IBM Advisory).
The Node.js security release was covered by multiple security news outlets including The Hacker News, GBHackers, and SecurityOnline, with some headlines describing it as affecting "virtually every Node.js app" due to its broad version coverage (The Hacker News). Endor Labs published a technical digest covering all eight vulnerabilities fixed in the release (Endor Labs). The German BSI (Federal Office for Information Security) also issued an update notification for the critical Node.js vulnerabilities. Community discussion on OSS-Sec and LinkedIn noted the broad impact across all active Node.js release lines.
Fix availability across major Linux distributions and their releases.
bookworm
nodejs: 18.20.4+dfsg-1~deb12u2
sid
nodejs: 22.22.0+dfsg+~cs22.19.6-1
trixie
nodejs: 20.19.2+dfsg-1+deb13u1
bionic (esm-apps)
nodejs
devel
nodejs
focal (esm-apps)
nodejs
jammy
nodejs
jammy (esm-apps)
nodejs
noble
nodejs
noble (esm-apps)
nodejs
resolute
nodejs
RHEL 8
:appstream:nodejs:20/nodejs/nodejs-0:24.13.0-0.module%2Bel8.10.0%2B23888%2B24fa7806
RHEL 9
:appstream:nodejs:20:9040020260211171433:rhel9/nodejs-packaging-0:20-9040020260211171433.rhel9.src
RHEL 10
nodejs22-1:22.22.0-1.el10_0.src
Source: This report was generated using AI
Free Vulnerability Assessment
Evaluate your cloud security practices across 9 security domains to benchmark your risk level and identify gaps in your defenses.
Get a personalized demo
"Best User Experience I have ever seen, provides full visibility to cloud workloads."
"Wiz provides a single pane of glass to see what is going on in our cloud environments."
"We know that if Wiz identifies something as critical, it actually is."