CVE-2012-0393: Apache Struts's ParameterInterceptor component does not prevent access to public constructors
N/A
CVSS Score
Basic Information
CVE ID
GHSA ID
EPSS Score
0.99507%
CWE
-
Published
5/4/2022
Updated
3/14/2024
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
-
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
org.apache.struts.xwork:xwork-core | maven | < 2.2.3.1 | 2.2.3.1 |
org.apache.struts:struts2-core | maven | < 2.3.1.1 | 2.3.1.1 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from insufficient input sanitization in parameter handling components. The ParametersInterceptor
's loose regex allowed malicious parameter names to bypass security checks, while ConversionErrorInterceptor
and RepopulateConversionErrorFieldValidatorSupport
lacked proper OGNL escaping in error handling paths. The commit patches explicitly address these points by tightening regex patterns and adding escaping, confirming these functions
' roles in the vulnerability.