CVE Vulnerabilities

CVE-2026-42584

Inconsistent Interpretation of HTTP Requests ('HTTP Request/Response Smuggling')

Published: May 13, 2026 | Modified: Jun 17, 2026
CVSS 3.x
9.1
CRITICAL
Source:
NVD
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:H
CVSS 2.x
RedHat/V2
RedHat/V3
7.3 IMPORTANT
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L
Ubuntu
MEDIUM
root.io logo minimus.io logo echo.ai logo

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.

Weakness

The product acts as an intermediary HTTP agent (such as a proxy or firewall) in the data flow between two entities such as a client and server, but it does not interpret malformed HTTP requests or responses in ways that are consistent with how the messages will be processed by those entities that are at the ultimate destination.

Affected Software

NameVendorStart VersionEnd Version
NettyNetty*4.1.133 (excluding)
NettyNetty4.2.0 (including)4.2.13 (excluding)
Cryostat 4 on RHEL 9RedHatcryostat/cryostat-reports-rhel9:4.2.0-10*
Cryostat 4 on RHEL 9RedHatcryostat/cryostat-rhel9:4.2.0-10*
Cryostat 4 on RHEL 9RedHatcryostat/jfr-datasource-rhel9:4.2.0-10*
Red Hat build of Quarkus 3.27.4RedHatnetty-codec-http*
Red Hat build of Quarkus 3.33.2RedHat*
Red Hat OpenShift Dev Spaces 3.28RedHatdevspaces/openvsx-rhel9:1780948325*
Red Hat OpenShift Dev Spaces 3.28RedHatdevspaces/pluginregistry-rhel9:1780696380*
Red Hat OpenShift Dev Spaces 3.28RedHatdevspaces/server-rhel9:1780694994*
NettyUbuntudevel*
NettyUbuntuesm-apps-legacy/xenial*
NettyUbuntuesm-apps/bionic*
NettyUbuntuesm-apps/focal*
NettyUbuntuesm-apps/jammy*
NettyUbuntuesm-apps/noble*
NettyUbuntuesm-apps/resolute*
NettyUbuntuesm-infra-legacy/trusty*
NettyUbuntujammy*
NettyUbuntunoble*
NettyUbuntuquesting*
NettyUbunturesolute*
NettyUbuntuupstream*

Extended Description

HTTP requests or responses (“messages”) can be malformed or unexpected in ways that cause web servers or clients to interpret the messages in different ways than intermediary HTTP agents such as load balancers, reverse proxies, web caching proxies, application firewalls, etc. For example, an adversary may be able to add duplicate or different header fields that a client or server might interpret as one set of messages, whereas the intermediary might interpret the same sequence of bytes as a different set of messages. For example, discrepancies can arise in how to handle duplicate headers like two Transfer-encoding (TE) or two Content-length (CL), or the malicious HTTP message will have different headers for TE and CL. The inconsistent parsing and interpretation of messages can allow the adversary to “smuggle” a message to the client/server without the intermediary being aware of it. This weakness is usually the result of the usage of outdated or incompatible HTTP protocol versions in the HTTP agents.

Potential Mitigations

References