CVE-2014-0115: Apache Storm log viewer path traversal vulnerability
7.5
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.70272%
CWE
Published
5/17/2022
Updated
8/16/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
org.apache.storm:storm | maven | <= 0.9.0.1 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from improper handling of user-supplied 'file' parameters in the log viewer endpoint. The description explicitly mentions exploitation via '..' in the file parameter to log, which matches classic path traversal patterns. The JIRA ticket STORM-269 and CWE-22 classification confirm this is a path sanitation failure in log file
handling. While no patch diff is available, Storm's architecture suggests the log viewer functionality is implemented in LogResource
class (common pattern in Java web apps), and the function name 'serveLogFile' aligns with standard REST resource method naming conventions for file serving endpoints.