CVE Catalog

CVE-2026-42582

HighCVSS 7.5
Published: Updated: Translated: NVD NIST

Exploitation Probability (EPSS)

Low risk
0.44%

35th percentile - higher than 35% of all known CVEs

Summary

In Netty before version 4.2.13.Final, the QpackDecoder's decodeHuffmanEncodedLiteral method allocates a byte array based on a length value from the wire without checking if enough readable bytes exist. An attacker can exploit this by sending crafted HTTP/3 header blocks, causing excessive memory allocation and denial of service.

Risk Assessment

The organization faces a denial-of-service risk where an unauthenticated attacker can crash servers or applications using Netty for HTTP/3 by sending specially crafted requests. This can lead to service unavailability and potential business disruption.

Recommendation

Upgrade Netty to version 4.2.13.Final or later immediately. If upgrading is not feasible, consider disabling HTTP/3 support temporarily or deploying WAF rules to block suspicious frames.

Other vulnerabilities in Netty

See all
Original NVD description (English source)

Netty is an asynchronous, event-driven network application framework. Prior to 4.2.13.Final, when decoding header blocks, the non-Huffman branch of io.netty.handler.codec.http3.QpackDecoder#decodeHuffmanEncodedLiteral may execute new byte[length] for a string literal before verifying that length bytes are actually present in the compressed field section. The wire encoding allows a very large length to be expressed in few bytes. There is no check that length <= in.readableBytes() before new byte[length]. This vulnerability is fixed in 4.2.13.Final.

Vulnerability data from NVD (NIST) · CISA KEV · EPSS