CVE-2016-4993:
Improper Neutralization of CRLF Sequences in Wildfly Undertow
6.1
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.68353%
CWE
Published
5/17/2022
Updated
1/27/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
org.wildfly:wildfly-undertow | maven | >= 10.0.0.Final, <= 10.1.0.Final | 11.0.0.Final |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stemmed from improper neutralization of CR/LF sequences in HTTP headers. The commit diff shows these functions
were modified to add CR/LF sanitization by replacing them with spaces. Prior to this fix, these functions
processed header values without validating
against CR/LF injection, making them the entry points for HTTP response splitting. The HttpString
constructor was also hardened to reject newlines, but the primary vulnerable paths were in header value handling during protocol encoding/response writing.