Jun 19, 2026·7 min read·63 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.
An in-depth technical analysis of CVE-2026-68945, a high-severity security vulnerability in Angular's `@angular/common/http` package. The flaw stems from an ambiguity in how query parameters are serialized to generate cache keys during Server-Side Rendering (SSR) within the `HttpTransferCache` component. By failing to encode delimiters and implicitly coercing arrays to comma-joined strings, the serialization mechanism yields identical cache keys for distinct requests, facilitating State Poisoning and Cross-Request Response Reuse.
A critical heap out-of-bounds (OOB) write vulnerability exists in the Linux kernel's IPv6 RPL (Routing Protocol for Low-Power and Lossy Networks) Segment Routing Header (SRH) processing logic. The vulnerability is located within net/ipv6/exthdrs.c, specifically in the ipv6_rpl_srh_rcv function. Under specific circumstances, when a packet containing a compressed RPL Source Routing Header is processed, segment swapping can reduce the common-prefix length, causing the recompressed header to grow. Because the kernel fails to validate available headroom on intermediate segments, a buffer underflow occurs during skb_push. This leads to an integer wrap in the MAC header offset pointer during MAC header rebuilding, causing a 14-byte out-of-bounds memory write roughly 64 KiB past the socket buffer.
CVE-2026-58263 is a high-severity Mutation Cross-Site Scripting (mXSS) vulnerability affecting Jodit Editor prior to version 4.12.28. The flaw exists in Jodit's built-in clean-html sanitizer plugin, which fails to securely parse and sanitize nested elements containing foreign namespaces like MathML and SVG. Attackers can bypass sanitization by smuggling malicious payload elements inside rawtext container tags like style inside a MathML node, leading to DOM mutation and unauthenticated arbitrary script execution in the context of the user's browser session.
Jodit Editor versions prior to 4.13.6 are vulnerable to client-side Cross-Site Scripting (XSS). The clean-html plugin's sanitization routine performs case-sensitive lookups against uppercase-only element blacklists. When processing XML-based foreign namespaces such as SVG or MathML, DOM engines preserve the lowercase format of tags. Because Jodit's denyTags check fails to normalize tag casing, malicious script blocks nested inside foreign namespace elements completely bypass validation and serialize directly into the editor output.
A critical code injection vulnerability exists in Savon, a widely used SOAP client library for Ruby, prior to version 2.17.2. The vulnerability resides within the Savon::Model.all_operations module, where operation names fetched from a target Web Services Description Language (WSDL) document are dynamically evaluated via module_eval without sanitization. An attacker capable of manipulating the target WSDL document (e.g., through Man-in-the-Middle attacks, DNS hijacking, or Server-Side Request Forgery) can execute arbitrary Ruby code in the context of the parent application process.
An integer conversion overflow vulnerability exists in the XCF decoder of ImageMagick before version 6.9.13-51 and 7.1.2-26. The issue arises from mixed-type arithmetic that promotes calculation results to floating-point representations, causing an undefined cast back to integer. Under optimizing compilers, this undefined behavior results in bounds checks being bypassed, allowing out-of-bounds heap reads.