CVE-2019-20445:
HTTP Request Smuggling in Netty
9.1
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.62769%
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-handler | maven | >= 4.0.0, < 4.1.45 | 4.1.45 |
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 validation in HttpObjectDecoder
. The CVE description and Netty
's own fix (PR #9865) specifically show added validation for: 1) Duplicate Content-Length headers, and 2) Transfer-Encoding appearing with Content-Length. The decode()
method would have processed these invalid combinations prior to the patch, making it the vulnerable entry point. The file path and class name are confirmed through multiple references including the GitHub
commit diff and CVE analysis.