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.
Published: 2026-08-13
Score: n/a
EPSS: n/a
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

The vulnerability resides in the OpenSSL QUIC server routine that handles inbound QUIC packets. When a packet with the INITIAL type arrives for a connection ID that does not yet exist, the server allocates a new channel object and places it in a queue awaiting the application’s SSL_accept call. Because no upper bound is enforced on how many such pending connections may be queued, an attacker that floods the server with many INITIAL packets can cause the memory dedicated to per‑channel state to grow without limits, eventually exhausting system resources and rendering the QUIC listener unavailable. The weakness is a classic case of resource exhaustion (CWE‑770).

Affected Systems

This flaw is present in OpenSSL starting with version 3.5, when the QUIC server implementation was first introduced. All 3.5 and later releases that contain the unmodified code are vulnerable until the patch that introduces a 256‑connection pending‑queue limit is applied. The vendor affected is OpenSSL; the product is OpenSSL, and the vulnerability affects any configured QUIC server using the listener SSL object.

Risk and Exploitability

The risk is high because the attack requires only the ability to send numerous QUIC Initial packets over the network to the server’s listening socket; no prior authentication or privileged access is needed. The exploitable path is straightforward: flood the listener with Initial packets for unknown destination connection IDs, forcing the server to allocate new channel objects continuously. Although EPSS data are unavailable, the fact that the vulnerability can lead to service interruption, combined with no current mitigation in place for unpatched systems, implies a substantial likelihood of exploitation. The CVSS score is not supplied, but the nature of the flaw suggests a high severity, and the vulnerability is not listed in the CISA KEV catalog.

Generated by OpenCVE AI on August 13, 2026 at 15:23 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Upgrade OpenSSL to the latest release that includes the patch implementing a limit of 256 pending QUIC connections.
  • If an upgrade cannot be performed immediately, configure the server to reduce the pending connection limit by calling SSL_set_value_uint to a value that aligns with the application’s acceptance rate.
  • Ensure the application processes SSL_accept in a timely manner so that queued connections are accepted and the pending queue does not grow unchecked.

Generated by OpenCVE AI on August 13, 2026 at 15:23 UTC.

Tracking

Sign in to view the affected projects.

Advisories

No advisories yet.

History

Thu, 13 Aug 2026 14:30:00 +0000

Type Values Removed Values Added
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.
Title Unbounded Memory Growth in QUIC Server Incoming Channel Queue
Weaknesses CWE-770
References

Subscriptions

No data.

cve-icon MITRE

Status: PUBLISHED

Assigner: openssl

Published:

Updated: 2026-08-13T13:55:52.370Z

Reserved: 2026-07-02T08:35:57.518Z

Link: CVE-2026-14456

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Received

Published: 2026-08-13T15:19:31.820

Modified: 2026-08-13T15:19:31.820

Link: CVE-2026-14456

cve-icon Redhat

No data.

cve-icon OpenCVE Enrichment

Updated: 2026-08-13T15:30:04Z

Weaknesses
  • CWE-770

    Allocation of Resources Without Limits or Throttling