CVE-2026-18798
Received Received - Intake

Double Free in OpenSSL QUIC Implementation

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

Publication date: 2026-08-25

Last updated on: 2026-08-25

Assigner: OpenSSL Software Foundation

Description

Issue summary: QUIC server may double free QRX (QUIC record layer RX) object when channel creation fails for initial packet. Impact summary: Double free leads to heap corruption, which typically results in termination of QUIC server process, leading to Denial of Service. There is so far no evidence that this double free is exploitable for remote code execution, thus it is considered highly improbable. CWE: CWE-415: Double Free Description: In order to validate initial packet, OpenSSL QUIC stack default packet handler (port_default_packet_handler()) creates a so-called QRX object. If the initial packet validates successfully with QRX object, the default packet handler proceeds to channel (connection object) creation. The QRX object used for packet validation is passed to port_bind_channel(), so it becomes part of the newly created connection. If port_bind_channel() fails, then it also frees the QRX object. Once port_bind_channel() returns, the port_default_packet_handler() detects the failure and proceeds to the error branch, where the same QRX object is freed for the second time. The failure in port_bind_channel() function can be induced with a relatively low effort by a malformed (non RFC 9000 compliant) INITIAL packet. If the packet carries DCID (destination connection ID) which is shorter than 8 bytes, then port_bind_channel() jumps to the error path after ossl_quic_lcidm_enrol_odcid() detects that the DCID has invalid length. 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-25
Last Modified
2026-08-25
Generated
2026-08-25
AI Q&A
2026-08-25
EPSS Evaluated
N/A
NVD
EUVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
openssl openssl to 3.0.0 (inc)

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-415 The product calls free() twice on the same memory address.

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

This vulnerability is a double free issue in the OpenSSL QUIC stack. When a QUIC server processes an initial packet, it creates a QRX object for validation. If channel creation fails later, the QRX object is freed twice, causing heap corruption. This typically crashes the QUIC server, leading to a Denial of Service.

Detection Guidance

This vulnerability is specific to OpenSSL's QUIC implementation and may not have direct detection commands. Monitor QUIC server logs for crashes or errors during initial packet processing. Check for heap corruption errors in system logs if the server terminates unexpectedly.

Impact Analysis

The main impact is service disruption. If exploited, it can crash the QUIC server, making it unavailable. There is no evidence it can be used for remote code execution, so the risk is limited to downtime rather than data breaches.

Compliance Impact

This vulnerability primarily causes Denial of Service (DoS) by terminating QUIC server processes due to heap corruption from a double-free issue. It does not appear to allow remote code execution or data exposure, which are key concerns for GDPR and HIPAA compliance. However, service disruption could impact availability requirements in these regulations.

Mitigation Strategies

Update OpenSSL to the latest version that patches this issue. If using QUIC, disable QUIC support temporarily if not required. Monitor for malformed INITIAL packets with short DCIDs as potential attack vectors.

Chat Assistant

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

EPSS Chart