CVE-2020-10687:
HTTP Request Smuggling in Undertow
4.8
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.43629%
CWE
Published
4/30/2021
Updated
2/1/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
io.undertow:undertow-core | maven | <= 2.1.0.Final | 2.2.0.Final |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from improper validation of HTTP request characters. Key areas would be:
- Header parsing (HeaderParser.parseHeader) - Directly processes header name/value pairs
- Request line parsing (HttpServerExchange.parseHttpRequest) - Validates method/URI
- Core parser (HttpRequestParser.parse) - Handles raw byte processing
While the exact patch isn't shown, the CVE description and related CVE-2017-2666 history indicate these are the most likely candidates. The medium confidence reflects the lack of direct patch code, but these functions are central to HTTP request processing and character validation in Undertow.