CVE-2026-50009
Description
Netty QUIC prior to 4.2.15.Final exposes stateless reset token via connection ID headers, enabling on-path attackers to spoof stateless reset packets for denial of service.
AI Insight
LLM-synthesized narrative grounded in this CVE's description and references.
Netty QUIC prior to 4.2.15.Final exposes stateless reset token via connection ID headers, enabling on-path attackers to spoof stateless reset packets for denial of service.
Vulnerability
Netty's QUIC implementation prior to version 4.2.15.Final uses the same HMAC-SHA256 key for both HmacSignQuicConnectionIdGenerator and HmacSignQuicResetTokenGenerator. During source connection ID rotation, the current server source CID C is used as input to produce the next CID N. The stateless reset token for C is the first 16 bytes of HMAC(K, C), while N is the first L bytes of the same digest, where L equals the length of C. When L >= 16, the first 16 bytes of N (which appear as the connection ID in QUIC headers) are exactly the reset token for C. This violates RFC 9000's requirement that the stateless reset token be difficult to guess [1][2].
Exploitation
An on-path attacker who can observe QUIC packet headers (without decrypting payloads) can read the connection ID during and after a source CID rotation. If the connection ID length is at least 16 bytes, the attacker directly obtains the stateless reset token for the server's current source connection ID. The attacker then crafts a spoofed Stateless Reset packet containing that token and sends it to the client, mimicking the server [2].
Impact
Successful exploitation allows an on-path attacker to forcibly close the client side of the QUIC connection by sending a valid Stateless Reset packet. This results in a Denial of Service (DoS) for the affected connection. Additionally, the reset token is disclosed to the network observer, which is an information disclosure violation [2].
Mitigation
Upgrade to Netty version 4.2.15.Final, which patches the issue by ensuring the stateless reset token is not derivable from header-visible connection IDs. No workaround is available for older versions [1][2].
AI Insight generated on Jun 12, 2026. Synthesized from this CVE's description and the cited reference URLs; citations are validated against the source bundle.
Affected products
2Patches
0No patches discovered yet.
Vulnerability mechanics
No source-code context for this CVE — mechanics is only generated when we can read the actual fix diff. Without that, the four sections (root cause, attack vector, affected code, fix) would be speculation rather than analysis.
References
2News mentions
0No linked articles in our index yet.