Skip to content

Socket.IO: Engine.IO WebTransport SID DoS

High severity GitHub Reviewed Published Jun 25, 2026 in socketio/socket.io • Updated Aug 31, 2026

Package

npm engine.io (npm)

Affected versions

>= 6.5.0, < 6.6.7

Patched versions

6.6.7

Description

Impact

Engine.IO servers with WebTransport enabled are vulnerable to a remotely triggerable denial of service.

A malicious unauthenticated client can send a crafted WebTransport upgrade request containing a specially chosen session ID, such as __proto__. Because the session ID lookup did not properly verify that the key was an own property of the clients object, the lookup could resolve to an inherited prototype property instead of a valid Engine.IO client.

This can cause a TypeError during WebTransport upgrade handling. Since the failure occurs in an asynchronous context, it may result in an unhandled Promise rejection and terminate the Node.js process on affected Node.js versions/configurations.

Successful exploitation can allow an unauthenticated remote attacker to crash the server process and cause denial of service. Under a process supervisor, repeated exploitation may cause crash loops.

Affected configurations are limited to deployments where WebTransport support is enabled. WebTransport is not enabled by default.

Affected versions:

  • engine.io >= 6.5.0 < 6.6.7

Patches

The issue was fixed in:

  • engine.io 6.6.7

Users should upgrade to engine.io@6.6.7 or later.

If using Socket.IO packages that depend on Engine.IO, users should update to a Socket.IO release that includes the patched Engine.IO version.

Workarounds

If upgrading immediately is not possible, affected users can mitigate the issue by disabling WebTransport support.

WebTransport is opt-in, so servers should ensure that webtransport is not included in the enabled transports list.

For example, use only the default HTTP long-polling and WebSocket transports:

const engine = new Server({
  transports: ["polling", "websocket"],
});

Additional operational mitigations may include:

  • Restricting access to WebTransport endpoints at the reverse proxy or HTTP/3 layer.
  • Disabling HTTP/3/WebTransport support until the patched version can be deployed.
  • Running the service under a supervisor as a partial availability mitigation, though this does not prevent repeated crash attempts.

References

References

@darrachequesne darrachequesne published to socketio/socket.io Jun 25, 2026
Published by the National Vulnerability Database Jul 8, 2026
Published to the GitHub Advisory Database Aug 31, 2026
Reviewed Aug 31, 2026
Last updated Aug 31, 2026

Severity

High

CVSS overall score

This score calculates overall vulnerability severity from 0 to 10 and is based on the Common Vulnerability Scoring System (CVSS).
/ 10

CVSS v3 base metrics

Attack vector
Network
Attack complexity
Low
Privileges required
None
User interaction
None
Scope
Unchanged
Confidentiality
None
Integrity
None
Availability
High

CVSS v3 base metrics

Attack vector: More severe the more the remote (logically and physically) an attacker can be in order to exploit the vulnerability.
Attack complexity: More severe for the least complex attacks.
Privileges required: More severe if no privileges are required.
User interaction: More severe when no user interaction is required.
Scope: More severe when a scope change occurs, e.g. one vulnerable component impacts resources in components beyond its security scope.
Confidentiality: More severe when loss of data confidentiality is highest, measuring the level of data access available to an unauthorized user.
Integrity: More severe when loss of data integrity is the highest, measuring the consequence of data modification possible by an unauthorized user.
Availability: More severe when the loss of impacted component availability is highest.
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H

EPSS score

Exploit Prediction Scoring System (EPSS)

This score estimates the probability of this vulnerability being exploited within the next 30 days. Data provided by FIRST.
(47th percentile)

Weaknesses

Improper Input Validation

The product receives input or data, but it does not validate or incorrectly validates that the input has the properties that are required to process the data safely and correctly. Learn more on MITRE.

CVE ID

CVE-2026-59724

GHSA ID

GHSA-gr94-w7qr-f4j3

Source code

Credits

Loading Checking history
See something to contribute? Suggest improvements for this vulnerability.