CVEReports
CVEReports

Automated vulnerability intelligence platform. Comprehensive reports for high-severity CVEs generated by AI.

Product

  • Home
  • Sitemap
  • RSS Feed

Company

  • About
  • Contact
  • Privacy Policy
  • Terms of Service

© 2026 CVEReports. All rights reserved.

Made with love by Amit Schendel & Alon Barad



CVE-2026-12151

CVE-2026-12151: Denial of Service via Uncontrolled Fragment Buffering in Undici WebSocket Client

Amit Schendel
Amit Schendel
Senior Security Researcher

Jun 19, 2026·7 min read·5 visits

Executive Summary (TL;DR)

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.

Vulnerability Overview

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.

Root Cause Analysis

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.

Vulnerable vs. Patched Code Path

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.

Exploitation Methodology

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.

Impact Assessment

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.

Remediation and Mitigation

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:

  • If using undici v6.x: Upgrade to v6.26.0 or later.
  • If using undici v7.x: Upgrade to v7.28.0 or later.
  • If using undici v8.x: Upgrade to v8.5.0 or later.

To verify the current version of undici installed in a project, run the following npm CLI command:

npm ls undici

If 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.

Technical Appendix

CVSS Score
7.5/ 10
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
EPSS Probability
0.28%
Top 80% most exploited

Affected Systems

undici WebSocket clientNode.js applications utilizing undici

Affected Versions Detail

Product
Affected Versions
Fixed Version
undici
OpenJS Foundation
>= 6.17.0 < 6.26.06.26.0
undici
OpenJS Foundation
>= 7.0.0 < 7.28.07.28.0
undici
OpenJS Foundation
>= 8.0.0 < 8.5.08.5.0
AttributeDetail
CWE IDCWE-400, CWE-770
Attack VectorNetwork (AV:N)
CVSS v3.1 Score7.5 (High)
EPSS Score0.00284 (Percentile: 19.97%)
ImpactDenial of Service (OOM Crash)
Exploit StatusPoC available, no active wild exploitation
KEV StatusNot listed

MITRE ATT&CK Mapping

T1499Endpoint Denial of Service
Impact
CWE-400
Uncontrolled Resource Consumption

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.

Vulnerability Timeline

CVE-2026-12151 Advisory Published by OpenJS Foundation
2026-06-17
CVE-2026-12151 Designated and Published to the NVD
2026-06-17
Patched Versions (6.26.0, 7.28.0, 8.5.0) Released on npm Registry
2026-06-17

References & Sources

  • [1]GHSA-vxpw-j846-p89q
  • [2]OpenJS Foundation Security Advisories
  • [3]CVE-2026-12151 Record
  • [4]NVD - CVE-2026-12151

Attack Flow Diagram

Press enter or space to select a node. You can then use the arrow keys to move the node around. Press delete to remove it and escape to cancel.
Press enter or space to select an edge. You can then press delete to remove it or escape to cancel.

More Reports

•22 minutes ago•GHSA-MQQ5-J7W8-2HGH
7.5

GHSA-MQQ5-J7W8-2HGH: Missing Authorization in Alchemy CMS API Pages Controller

A critical missing authorization vulnerability exists in the API Pages Controller of Alchemy CMS. An unauthenticated remote attacker can exploit the 'nested' action to retrieve the entire nested page tree. Furthermore, by appending the query parameter '?elements=true', the attacker can extract sensitive content from draft, unpublished, and restricted pages, bypassing all access controls.

Alon Barad
Alon Barad
0 views•6 min read
•about 1 hour ago•GHSA-WFPW-MMFH-QQ69
4.8

GHSA-WFPW-MMFH-QQ69: Use-After-Free Vulnerability in Nokogiri XML Node-Level XInclude Processing

Nokogiri is a popular Ruby gem used for parsing XML and HTML documents. A Use-After-Free (UAF) vulnerability exists in its CRuby implementation during XInclude processing. When an application traverses an XML document and exposes nodes to Ruby before calling `do_xinclude`, the underlying C library `libxml2` can free these structures in-place. This leaves active Ruby objects holding pointers to freed memory, leading to potential segmentation faults, memory corruption, or information disclosure.

Amit Schendel
Amit Schendel
2 views•7 min read
•about 1 hour ago•GHSA-PHWJ-RPRQ-35PP
2.3

GHSA-PHWJ-RPRQ-35PP: Use-After-Free Vulnerability in Nokogiri XML Attribute Value Modification

A use-after-free (UAF) vulnerability exists in the CRuby native extension of the Nokogiri gem when updating XML attribute values. If child nodes of an XML attribute are wrapped by Ruby objects prior to setting the attribute's value, the underlying C memory structures are freed while the Ruby wrapper retains a dangling pointer. This results in memory corruption, invalid pointer dereferences, and application crashes during execution or garbage collection.

Amit Schendel
Amit Schendel
4 views•6 min read
•about 2 hours ago•GHSA-VMHF-C436-HXJ4
5.1

GHSA-VMHF-C436-HXJ4: Client-side Stored Cross-Site Scripting (XSS) in JupyterLab Extension Manager

A client-side Stored Cross-Site Scripting (XSS) vulnerability exists in the JupyterLab Extension Manager. This vulnerability allows an attacker to register a malicious package on the Python Package Index (PyPI) with a crafted metadata homepage URL using the 'javascript:' pseudo-protocol. When a JupyterLab user opens the Extension Manager and clicks the extension name, the browser executes arbitrary JavaScript code within the context of the JupyterLab origin. This can lead to the theft of active workspace documents, credentials, and API tokens. The issue affects all versions of JupyterLab prior to version 4.5.9.

Amit Schendel
Amit Schendel
2 views•5 min read
•about 2 hours ago•GHSA-JV2H-4P9V-WF5W
8.8

GHSA-JV2H-4P9V-WF5W: Arbitrary Remote Code Execution via Incomplete Environment Denylist in Ouroboros AI

An arbitrary Remote Code Execution (RCE) vulnerability exists in ouroboros-ai due to an incomplete fix for CVE-2026-47211. Ouroboros automatically loads environment configurations from local .env files located in the current working directory (CWD) of cloned repositories. Although a denylist (_UNTRUSTED_ENV_DENYLIST) was introduced in version 0.39.0 to filter out execution-routing environment variables, multiple critical configuration variables were omitted, enabling complete sandbox bypass and arbitrary system command execution.

Alon Barad
Alon Barad
4 views•6 min read
•about 3 hours ago•GHSA-VCV2-R9JH-99M5
8.8

GHSA-VCV2-R9JH-99M5: OS Command Injection in agentic-flow MCP Server Tools

An OS command injection vulnerability (CWE-78) exists in agentic-flow versions 2.0.13 and prior. The package's Model Context Protocol (MCP) server tools directly interpolate user-controlled parameters into shell command strings executed via child_process.execSync without validation. If an AI agent processes untrusted external input and forwards it as parameters to any affected tool, an attacker can break out of the shell argument quotes and execute arbitrary OS commands on the host machine.

Alon Barad
Alon Barad
4 views•5 min read