Skip to content
Threat Feed
low advisory

Denial of Service via Unbounded Queue Growth in WebSocketServerExtensionHandler

A vulnerability in WebSocketServerExtensionHandler allows an attacker to trigger unbounded per-connection queue growth, leading to resource exhaustion and denial of service.

CVE search metadata

CVE search record: CVE-2026-93558. Severity: high. CVSS: 7.5. KEV: no. Product: WebSocketServerExtensionHandler. Brief: Denial of Service via Unbounded Queue Growth in WebSocketServerExtensionHandler. Brief link: https://feed.craftedsignal.io/briefs/2026-09-cve-2026-93558-dos/

CVE-2026-93558 identifies a critical vulnerability within the WebSocketServerExtensionHandler component. The issue stems from a failure to implement bounded constraints on per-connection queues, allowing an attacker to inflate these queues through crafted WebSocket traffic. This uncontrolled growth consumes excessive system memory and processing cycles, ultimately resulting in a denial-of-service (DoS) condition. Because this vulnerability targets the fundamental handling of WebSocket extensions, any service or application leveraging this specific handler is susceptible if it does not enforce its own upstream resource limits. Defenders should note that this is a resource exhaustion attack, which may manifest as a sudden spike in memory usage or latency before service failure.

Impact

The vulnerability poses a significant risk to the availability of network services utilizing the WebSocketServerExtensionHandler. A successful attack results in service disruption, preventing legitimate users from establishing or maintaining WebSocket connections. This impact is particularly severe in high-concurrency environments where resource exhaustion can be triggered rapidly by a single unauthorized client, potentially leading to cascading failures in downstream services dependent on the affected component.

Recommendation

Detection engineering teams should monitor for anomalous spikes in memory utilization and WebSocket connection counts associated with the affected handler.

  • Review system-level resource monitoring (e.g., Prometheus, Datadog) for sustained high memory consumption originating from the application process hosting WebSocketServerExtensionHandler.
  • Implement request rate limiting and connection timeouts at the network edge or load balancer level to mitigate the impact of malicious WebSocket traffic.
  • Patch or update the affected library containing the WebSocketServerExtensionHandler to a version that enforces per-connection queue limits.

Mitigations

Identify and patch the application library incorporating the vulnerable WebSocketServerExtensionHandler component.

immediate IT Operations

CVE-2026-93558

Gaps

  • Lack of specific telemetry regarding the internal queue state of the vulnerable component.