CVE-2024-23953: Apache Hive vulnerable to Observable Timing Discrepancy and Authentication Bypass by Spoofing
6.5
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.34502%
CWE
Published
1/28/2025
Updated
1/28/2025
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:N
| Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
|---|---|---|---|
| org.apache.hive:hive-llap-common | maven | < 4.0.0 | 4.0.0 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from the use of Arrays.equals() in the checkSignature method of LlapSignerImpl. The commit diff explicitly shows the replacement of Arrays.equals() with MessageDigest.isEqual(), a constant-time comparison method. The CVE description and GHSA advisory directly attribute the vulnerability to this non-constant-time comparison. The file path and method name match the code change in the provided commit, confirming the location of the vulnerability.