CVE Vulnerabilities

CVE-2026-42581

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

Published: May 13, 2026 | Modified: Jun 17, 2026
CVSS 3.x
9.8
CRITICAL
Source:
NVD
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
CVSS 2.x
RedHat/V2
RedHat/V3
7.2 IMPORTANT
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:L/A:N
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, HttpObjectDecoder strips a conflicting Content-Length header when a request carries both Transfer-Encoding: chunked and Content-Length, but only for HTTP/1.1 messages. The guard is absent for HTTP/1.0. An attacker that sends an HTTP/1.0 request with both headers causes Netty to decode the body as chunked while leaving Content-Length intact in the forwarded HttpMessage. Any downstream proxy or handler that trusts Content-Length over Transfer-Encoding will disagree on message boundaries, enabling request smuggling. 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