CVE-2013-7398:
Insufficient Verification of Data Authenticity in Async Http Client
4.3
CVSS ScoreBasic Information
CVE ID
GHSA ID
EPSS Score
-
CWE
Published
5/13/2022
Updated
3/4/2024
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
AV:N/AC:M/Au:N/C:N/I:P/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
com.ning:async-http-client | maven | < 1.9.0 | 1.9.0 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from missing hostname verification in SSL certificate validation. The commit diff shows the vulnerable version used AllowAllHostnameVerifier in defaultHostnameVerifier() which explicitly skips hostname checks. The patch replaces it with DefaultHostnameVerifier that implements proper checks. The CVE description and GHSA advisory both confirm the root cause was lack of hostname verification in certificate validation.