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

Published Sep 18, 2026
·
Updated

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 = 1HEXDIG 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

Affected Software

2 affected components
Netty netty-codec-http>=4.2.0.Final<=4.2.17.Final
maven/io.netty/netty-codec-http=4.1.137.Final

Remediation

Recommended actions to resolve this vulnerability, in priority order.

  1. Upgrade

    Upgrade maven:io.netty:netty-codec-http to a version that resolves this vulnerability.

    Patch GHSA-rq4j-fc47-9698

Event History

Sep 18, 2026
Data Sourced
via Red Hat·10:02 AM
DescriptionSeverityAffected Software
CVE Published
via MITRE·02:19 PM
Data Sourced
via MITRE·02:19 PM
DescriptionSeverityWeakness

Frequently Asked Questions

1

What traffic and deployment conditions make this exploitable?

An attacker must be able to send an HTTP request using chunked transfer encoding to a component that uses Netty's HTTP decoder. The malformed chunk-size line must contain an embedded bare carriage return and no chunk extension delimiter (`;`), such as `0\rX`.

2

Is authentication or user interaction required?

No. The supplied severity vector specifies network access, low attack complexity, no privileges required, and no user interaction.

3

What is the security impact described by the available data?

The issue enables HTTP request smuggling. The supplied vector rates confidentiality and integrity impact as low and availability impact as none.

4

How can I check whether a decoder accepts the malformed input?

Test the HTTP request parsing path with a chunked request whose chunk-size line contains a bare CR without a semicolon, for example `0\rX\r\n`. Acceptance of that line rather than rejection indicates the affected validation behavior.

Contact

SecAlerts Pty Ltd.
132 Wickham Terrace
Fortitude Valley,
QLD 4006, Australia
info@secalerts.co
By using SecAlerts services, you agree to our services end-user license agreement. This website is safeguarded by reCAPTCHA and governed by the Google Privacy Policy and Terms of Service. All names, logos, and brands of products are owned by their respective owners, and any usage of these names, logos, and brands for identification purposes only does not imply endorsement. If you possess any content that requires removal, please get in touch with us.
© 2026 SecAlerts Pty Ltd.
ABN: 70 645 966 203, ACN: 645 966 203