CVE-2015-5209: Special top object can be used to access Struts' internals
7.5
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.88422%
CWE
Published
5/14/2022
Updated
2/1/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
org.apache.struts:struts2-core | maven | < 2.3.24.1 | 2.3.24.1 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from improper input validation of request parameters accessing the 'top' object in ValueStack. The primary vulnerable function is ParametersInterceptor.intercept()
which handles parameter validation using regex patterns. The security patch modified the exclusion regex to block 'top' references, indicating this was the injection point. HttpParameters.create()
is included as a secondary candidate due to its role in parameter processing, though with lower confidence as specific patch details are unavailable. Both functions would appear in stack traces during parameter processing of malicious requests attempting to exploit the 'top' object access.