Jun 19, 2026·7 min read·138 visits
The undici WebSocket client does not limit the number of continuation frames per message, enabling a malicious server to crash the client process via heap exhaustion using infinite zero-byte fragments.
A high-severity denial of service vulnerability in the undici WebSocket client (CVE-2026-12151) arises from uncontrolled memory consumption. Although undici validates individual fragment sizes against a cumulative payload limit, it fails to cap the total number of frames in a single message stream. This allows a rogue or compromised WebSocket server to send an infinite sequence of small or empty continuation frames, causing unbounded memory allocation and eventual heap exhaustion on the client process.
The WebSocket protocol (RFC 6455) permits message fragmentation to facilitate the transmission of data streams whose total size is unknown at the start of transmission. The OpenJS Foundation's undici, a high-performance HTTP/1.1, HTTP/2, and WebSocket client for Node.js, implements this specification. To defend against resource exhaustion, undici allows developers to enforce a cumulative payload size limit via the maxPayloadSize parameter.
However, a critical security boundary is missed in the implementation of the WebSocket frame parser. While undici correctly aggregates and checks the total payload size of incoming fragments, it does not enforce any restriction on the absolute quantity of individual frames comprising a single WebSocket message. This gap exposes applications utilizing undici to endpoint denial of service.
An attacker capable of controlling the WebSocket server, or performing a machine-in-the-middle injection on unencrypted channels, can exploit this design flaw. By sending an ongoing stream of small or empty continuation frames, the attacker bypasses the cumulative payload limit check. The client continues to accept these frames, eventually exhausting available heap space and crashing the Node.js runtime environment.
To understand the vulnerability, it is necessary to examine how RFC 6455 structure matches memory allocation patterns in V8. A fragmented WebSocket message begins with an initial frame containing a specific data type opcode (0x1 for text, 0x2 for binary) and a FIN bit set to 0. Subsequent frames carry the continuation opcode (0x0) and a FIN bit of 0, until the final frame arrives with a FIN bit of 1.
In undici, as each continuation frame is parsed, the cumulative size of the payload is updated using the calculation:
$$\text{Cumulative Payload Size} = \sum_{i=1}^{n} \text{payloadLength}(\text{fragment}_i)$$
If this sum exceeds the configured maxPayloadSize, the client halts execution and terminates the connection. This algorithm assumes that a payload-size ceiling is sufficient to constrain memory utilization. However, it fails to account for metadata overhead.
For every frame processed, the underlying engine must allocate memory to track fragment-specific metadata, references, and buffers. If an adversary sends frames where the payload size is zero, the mathematical summation remains well below the maxPayloadSize threshold. The physical heap allocation, however, grows linear to the frame count. The V8 garbage collector cannot free these allocations because they are actively referenced within undici's internal queue waiting for the final frame, which never arrives.
The flaw resides within the logic of the frame parser. Below is a representation of the vulnerable parsing pattern, illustrating how frames are appended without tracking the overall fragment count:
// Vulnerable logic in frame processing
class WebSocketParser {
constructor(options) {
this.maxPayloadSize = options.maxPayloadSize || 1048576;
this._fragments = [];
this._currentPayloadSize = 0;
}
onFrame(frame) {
// Validate cumulative payload size
this._currentPayloadSize += frame.payloadLength;
if (this._currentPayloadSize > this.maxPayloadSize) {
this.destroy(new Error('Max payload size exceeded'));
return;
}
// Unbounded storage of frame references
this._fragments.push(frame);
if (frame.fin) {
const fullMessage = this.reassemble(this._fragments);
this.emit('message', fullMessage);
this.reset();
}
}
}To remediate the vulnerability, the frame parser must introduce a counter representing the total number of frames received for the active message, or explicitly enforce a maximum frame limit. The patched logic below demonstrates how a limit is enforced on the total count of fragments, mitigating the allocation loophole:
// Patched logic incorporating fragment limit validation
class WebSocketParser {
constructor(options) {
this.maxPayloadSize = options.maxPayloadSize || 1048576;
this.maxFragmentCount = options.maxFragmentCount || 1000; // Enforced limit
this._fragments = [];
this._currentPayloadSize = 0;
}
onFrame(frame) {
// Validate cumulative payload size
this._currentPayloadSize += frame.payloadLength;
if (this._currentPayloadSize > this.maxPayloadSize) {
this.destroy(new Error('Max payload size exceeded'));
return;
}
// Prevent unbounded array growth
if (this._fragments.length >= this.maxFragmentCount) {
this.destroy(new Error('Max fragment count exceeded'));
return;
}
this._fragments.push(frame);
if (frame.fin) {
const fullMessage = this.reassemble(this._fragments);
this.emit('message', fullMessage);
this.reset();
}
}
}By checking both the physical size of the data and the total structure count, the library prevents attackers from inducing unbounded memory states.
An attacker exploiting CVE-2026-12151 requires the targeted undici client to initiate a connection to an attacker-controlled WebSocket server, or a server that is vulnerable to downstream request hijacking. Once the WebSocket connection is established, the server initiates an infinite stream of empty continuation frames.
The attack vector is illustrated in the sequence diagram below:
Because the payload size of each individual frame is zero, the cumulative size calculation never triggers a threshold violation. However, the client allocates a small amount of memory in the heap for each frame's metadata and object wrapper. Over thousands of cycles, this leads to an Out-of-Memory condition.
The security impact of CVE-2026-12151 is classified as High, with a CVSS v3.1 Base Score of 7.5. The primary consequence is the total loss of availability for the application utilizing the undici client. In Node.js environments, an Out-of-Memory error results in a fatal error, which abruptly terminates the entire process.
If the affected Node.js service is responsible for handling critical backend integrations, message consumption, or user-facing APIs, the crash results in an immediate service disruption. Unless robust external process monitoring (such as systemd, PM2, or Kubernetes Pod orchestrators) is in place to auto-restart the process, the denial of service remains permanent.
Even with automated recovery mechanisms, an attacker can continuously exploit the loop upon client reconnection, creating a persistent denial of service state. This attack requires zero privileges and no user interaction, making it highly attractive for attackers targeting webhook handlers or client-side integrations that connect to user-supplied URLs.
To remediate CVE-2026-12151, developers must upgrade the undici package to the designated non-vulnerable versions. No configuration workarounds exist that can mitigate this flaw within the affected versions, as the vulnerability lies deep within the framing state machine.
Upgrade paths based on major version lines are as follows:
To verify the current version of undici installed in a project, run the following npm CLI command:
npm ls undiciIf indirect or transient dependencies pull in a vulnerable version, developers can enforce resolutions in their package.json using NPM overrides or Yarn resolutions to force the safe version.
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H| Product | Affected Versions | Fixed Version |
|---|---|---|
undici OpenJS Foundation | >= 6.17.0 < 6.26.0 | 6.26.0 |
undici OpenJS Foundation | >= 7.0.0 < 7.28.0 | 7.28.0 |
undici OpenJS Foundation | >= 8.0.0 < 8.5.0 | 8.5.0 |
| Attribute | Detail |
|---|---|
| CWE ID | CWE-400, CWE-770 |
| Attack Vector | Network (AV:N) |
| CVSS v3.1 Score | 7.5 (High) |
| EPSS Score | 0.00284 (Percentile: 19.97%) |
| Impact | Denial of Service (OOM Crash) |
| Exploit Status | PoC available, no active wild exploitation |
| KEV Status | Not listed |
The software does not control or limit the amount of resources (in this case, memory) that can be consumed when handling an incoming stream of WebSocket fragments.
CVE-2026-82399 is a resource management vulnerability in CoreDNS affecting custom DNS transport pathways. Prior to version 1.14.7, transports including DNS-over-HTTPS (DoH), DNS-over-QUIC (DoQ), and DNS-over-gRPC executed the resource-intensive unpack method of the underlying Go DNS library on raw, untrusted incoming payloads before validating the fixed 12-byte DNS header. An unauthenticated remote attacker can exploit this behavior by using nested DNS name compression pointers to trigger substantial heap allocations, leading to memory exhaustion and server termination.
An infinite loop vulnerability in ReactPHP's react/http chunked transfer encoding decoder (v0.6.0 up to 1.11.1) allows unauthenticated remote attackers to trigger a denial of service (DoS) by sending crafted chunked requests or responses, completely freezing the single-threaded event loop and pegging CPU usage to 100%.
Plate core HTML deserialization APIs parse supplied HTML strings in the active document. When an application passes untrusted or cross-user HTML to these APIs, certain HTML attributes can trigger browser behavior before the HTML is converted into editor nodes.
A polynomial-time Regular Expression Denial of Service (ReDoS) vulnerability in Soup Sieve versions prior to 2.9 allows remote unauthenticated attackers to cause CPU exhaustion and thread-pool denial of service. The vulnerability resides in the trailing whitespace and comment preprocessing step of the CSS parser. An attacker can trigger quadratic backtracking by submitting a crafted CSS selector string containing a long run of internal spaces or comments terminated by a non-matching token. This blocks the Python Global Interpreter Lock (GIL) and halts worker threads.
A regular expression denial of service (ReDoS) vulnerability in Soup Sieve prior to version 2.9 allows remote attackers to cause CPU exhaustion and service disruption. The issue lies within the definition of the IDENTIFIER and VALUE selector sub-patterns in the CSS parser component, which uses overlapping adjacent quantified groups. When parsing long, crafted, or unclosed CSS selectors, backtracking-based regular expression engines experience quadratic performance degradation. User-controlled selectors can reach this path through soupsieve.compile(), soupsieve.select(), or BeautifulSoup.select(), while applications using only hard-coded selectors are unaffected.
A protocol-level validation bypass in CoreDNS versions prior to 1.14.7 allows unauthenticated remote attackers to proxy unauthorized DNS UPDATE messages (Opcode 5) using modern alternative transport layers such as DoH, DoH3, DoQ, and gRPC. If upstream authoritative servers trust the CoreDNS server's source IP and do not enforce TSIG authentication, attackers can inject, alter, or delete DNS zone records, leading to potential zone takeover or traffic redirection.