CVE Catalog

CVE-2026-42584

HighCVSS 7.3
Published: Updated: Translated: NVD NIST

Exploitation Probability (EPSS)

Elevated risk
0.78%

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

Summary

A vulnerability in Netty's HttpClientCodec component causes incorrect pairing of HTTP responses with requests when using pipelining with GET and HEAD requests. When the server returns 103 and 200 responses, the queue pairs the HEAD response with the first 200 response, leading to incorrect data reading and stream offset.

Risk Assessment

An attacker could exploit this vulnerability to disrupt HTTP communication, potentially causing incorrect response processing, data loss, or integrity compromise of transmitted information.

Recommendation

Immediately update the Netty library to version 4.2.13.Final or 4.1.133.Final, which contain the fix for this vulnerability.

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 and 4.1.133.Final, HttpClientCodec pairs each inbound response with an outbound request by queue.poll() once per response, including for 1xx. If the client pipelines GET then HEAD and the server sends 103, then 200 with GET body, then 200 for HEAD, the queue pairs HEAD with the first 200. The HEAD rule then skips reading that message’s body, so the GET entity bytes stay on the stream and the following 200 is parsed from the wrong offset. This vulnerability is fixed in 4.2.13.Final and 4.1.133.Final.

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