CVE-2024-45106:
Apache Ozone: Improper authentication when generating S3 secrets
8.1
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.50514%
CWE
Published
12/3/2024
Updated
12/3/2024
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
org.apache.ozone:ozone | maven | = 1.4.0 | 1.4.1 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from the S3SecretManagementEndpoint
class added in PR #5233, which introduced REST endpoints for S3 secret management. The functions handle()
sensitive operations but lacked proper authorization validation()
. The CWE-287 (Improper Authentication) and CWE-863 (Incorrect Authorization) mappings confirm the authentication/authorization flaws. The patch in 1.4.1 disables the endpoint entirely, indicating these functions were the vulnerability source. The HTTP
method annotations (@PUT/@DELETE) and path parameters shown in code diffs align with the described attack vector.