CVE-2011-1498: Exposure of Sensitive Information to an Unauthorized Actor in Apache HttpClient
4.3
CVSS Score
Basic Information
CVE ID
GHSA ID
EPSS Score
0.85732%
CWE
Published
5/17/2022
Updated
3/5/2024
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
AV:N/AC:M/Au:N/C:P/I:N/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
org.apache.httpcomponents:httpclient | maven | >= 4.0.0, < 4.1.1 | 4.1.1 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from the RequestProxyAuthentication
class's process
method handling proxy authentication headers. The commit diff shows a critical addition of a route.isTunnelled()
check to prevent Proxy-Authorization
headers from being sent to the origin server during tunneling. Before this fix, the absence of this check allowed the header to leak. The function's responsibility for proxy authentication logic and the explicit patch to add tunneling validation
directly correlate to the vulnerability description.