๐Ÿ” CVE Alert

CVE-2026-93566

MEDIUM 6.5

Io.netty/netty-codec-http: netty: http request smuggling due to control characters in the chunk-size line

CVSS Score
6.5
EPSS Score
0.0%
EPSS Percentile
0th

### Summary Netty skips strict chunk size line validation when the line has no chunk extension (`;`), so a chunk size line containing an embedded bare CR (e.g. `0\rX`) is accepted instead of rejected, enabling HTTP request smuggling. ### Details `io.netty.handler.codec.http.HttpObjectDecoder#checkChunkExtensions` only runs the strict validator `HttpChunkLineValidatingByteProcessor` when a `;` is present: ```java int extensionsStart = line.bytesBefore((byte) ';'); if (extensionsStart == -1) { return; } ``` According to RFC 9112 https://datatracker.ietf.org/doc/html/rfc9112#appendix-A `chunk-size = 1*HEXDIG` ### PoC ```java @Test public void test() { String requestStr = "POST / HTTP/1.1\r\n" + "Host: localhost\r\n" + "Transfer-Encoding: chunked\r\n\r\n" + "0\rX\r\n" + "\r\n" + "GET /smuggled HTTP/1.1\r\n" + "Host: localhost\r\n" + "Content-Length: 0\r\n" + "\r\n"; EmbeddedChannel channel = new EmbeddedChannel(new HttpRequestDecoder()); assertTrue(channel.writeInbound(Unpooled.copiedBuffer(requestStr, Ch

CWE CWE-1035
Vendor red hat
Product red hat amq broker 7
Published Sep 18, 2026
Stay Ahead of the Next One

Get instant alerts for red hat red hat amq broker 7

Be the first to know when new medium vulnerabilities affecting red hat red hat amq broker 7 are published โ€” delivered to Slack, Telegram or Discord.

Get Free Alerts โ†’ Free ยท No credit card ยท 60 sec setup

CVSS v3 Breakdown

CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N
Attack Vector
Network
Attack Complexity
Low
Privileges Required
None
User Interaction
None
Scope
Unchanged
Confidentiality
Low
Integrity
Low
Availability
None

Affected Versions

Red Hat / Red Hat AMQ Broker 7
All versions affected
Red Hat / Red Hat AMQ Clients
All versions affected
Red Hat / Red Hat build of Apache Camel 4 for Quarkus 3
All versions affected
Red Hat / Red Hat build of Apache Camel for Spring Boot 4
All versions affected
Red Hat / Red Hat build of Apicurio Registry 3
All versions affected
Red Hat / Red Hat build of Debezium 3
All versions affected
Red Hat / Red Hat Build of Keycloak
All versions affected
Red Hat / Red Hat build of Quarkus
All versions affected
Red Hat / Red Hat Data Grid 8
All versions affected
Red Hat / Red Hat Fuse 7
All versions affected
Red Hat / Red Hat JBoss Enterprise Application Platform 7
All versions affected
Red Hat / Red Hat JBoss Enterprise Application Platform 8
All versions affected
Red Hat / Red Hat Single Sign-On 7
All versions affected

References

NVD โ†— CVE.org โ†— EPSS Data โ†—
access.redhat.com: https://access.redhat.com/security/cve/CVE-2026-93566 bugzilla.redhat.com: https://bugzilla.redhat.com/show_bug.cgi?id=2536954