CVE-2026-14456
Received Received - Intake

QUIC Server Denial of Service via Unlimited Channel Allocation

Vulnerability report for CVE-2026-14456, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-08-13

Last updated on: 2026-08-13

Assigner: OpenSSL Software Foundation

Description

Issue summary: When an OpenSSL QUIC server (Listener SSL object) processes valid QUIC Initial packets for unknown destination connection IDs, it can allocate and queue new incoming channels without enforcing any limit. Impact summary: A remote peer that can make many Initial packets reach the server listener faster than the application accepts connections, can cause the memory allocated to store the per-channel state to grow without any limits, potentially making the QUIC listener unavailable and causing Denial of Service. CWE: CWE-770: Allocation of Resources Without Limits or Throttling Description: The function that handles inbound QUIC packets uses Connection-Id from the packet header to find an existing connection (QUIC channel). If no existing connection is found and the packet type is INITIAL, the function treats the packet as a new connection. It allocates a new channel object and inserts it into a queue where it waits to be accepted by the local application with SSL_accept(3ossl). The memory occupied by these initial channel objects may grow without bounds if the application is not able to call SSL_accept() frequently enough to serve these inbound connection requests. The issue is present since OpenSSL 3.5 when the QUIC server implementation was added. The fix introduces a limit for pending connections. The default limit is set to 256 pending connections (waiting to be accepted by the local application). Applications may change the default by calling SSL_set_value_uint(3ossl). FIPS impact: no The FIPS module is not affected as the QUIC implementation is outside of the OpenSSL FIPS module boundary.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-08-13
Last Modified
2026-08-13
Generated
2026-08-13
AI Q&A
2026-08-13
EPSS Evaluated
N/A
NVD
EUVD

Affected Vendors & Products

Showing 6 associated CPEs
Vendor Product Version / Range
openssl openssl From 3.5 (inc)
openssl openssl From 3.6 (inc)
openssl openssl From 4.0 (inc)
openssl openssl 3.5.8
openssl openssl 3.6.4
openssl openssl 4.0.2

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-770 The product allocates a reusable resource or group of resources on behalf of an actor without imposing any intended restrictions on the size or number of resources that can be allocated.

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

This vulnerability affects OpenSSL's QUIC server implementation. When a QUIC server receives valid Initial packets for unknown connections, it creates new channel objects without limits. These channels wait to be accepted by the application. If too many packets arrive faster than they are processed, memory usage grows uncontrollably, leading to a Denial of Service (DoS) by exhausting system resources.

Detection Guidance

Monitor QUIC listener memory usage and pending connection queues. Check for excessive unaccepted QUIC connections using OpenSSL's API functions like ossl_quic_port_get_max_pending_channels. Inspect system logs for repeated SSL_accept failures or sudden memory spikes in OpenSSL processes.

Impact Analysis

An attacker could send many QUIC Initial packets to your OpenSSL QUIC server faster than your application can accept connections. This would cause memory exhaustion, making the server unresponsive or crashing it. The server would become unavailable, disrupting services relying on QUIC connections.

Mitigation Strategies

Upgrade OpenSSL to patched versions (4.0.2, 3.6.4, or 3.5.8). If upgrading is not immediately possible, apply the fix from the OpenSSL commits. Configure the default limit of 256 pending connections using SSL_set_feature_request_uint with SSL_VALUE_QUIC_MAX_PENDING_CONNS. Ensure applications call SSL_accept frequently to process pending connections.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-14456. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart