CVE-2019-20444:
HTTP Request Smuggling in Netty
9.1
CVSS ScoreBasic Information
CVE ID
GHSA ID
EPSS Score
-
CWE
Published
2/21/2020
Updated
8/16/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
io.netty:netty-codec-http | maven | >= 4.0.0, < 4.1.44 | 4.1.44 |
org.jboss.netty:netty | maven | < 4.0.0 | |
io.netty:netty | maven | < 4.0.0 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from improper header parsing in HttpObjectDecoder. The GitHub patch (PR #9871) specifically modifies the splitHeader method to add a check for missing colons, which was the root cause. The test case added in HttpRequestDecoderTest validates this scenario by sending a header without a colon, confirming the function's vulnerability prior to the fix. The CVE description and commit diff directly implicate this function as the source of improper header handling.