OSV 1.4.0 · github-reviewed · 修改于 2026-09-01 05:28
发布时间
2026-09-01 05:28
GitHub 审查时间
2026-09-01 05:28
NVD 发布时间
2026-07-09 00:16
源文件
advisories/github-reviewed/2026/08/GHSA-gr94-w7qr-f4j3/GHSA-gr94-w7qr-f4j3.json
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.7The issue was fixed in:
Users should upgrade to [email protected] 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.
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:
6.6.7: https://github.com/socketio/socket.io/blob/main/packages/engine.io/CHANGELOG.md#667-2026-04-27