CVE-2023-51437: Apache Pulsar SASL Authentication Provider observable timing discrepancy vulnerability
7.4
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.32548%
CWE
Published
2/7/2024
Updated
7/22/2024
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N
| Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
|---|---|---|---|
| org.apache.pulsar:pulsar-broker-auth-sasl | maven | < 2.11.3 | 2.11.3 |
| org.apache.pulsar:pulsar-broker-auth-sasl | maven | >= 3.0.0, < 3.0.2 | 3.0.2 |
| org.apache.pulsar:pulsar-broker-auth-sasl | maven | >= 3.1.0, < 3.1.1 | 3.1.1 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from the use of String.equals() to compare cryptographic signatures in the verifyAndExtract method. The commit diff explicitly shows the replacement of String.equals() with MessageDigest.isEqual(), which is timing-attack resistant. This matches the CWE-203 (Observable Discrepancy) description and the referenced timing attack article. The function's role in signature verification directly impacts authentication security, making it the clear vulnerable component.