Home > Security Bulletins > S2-015 |
A vulnerability introduced by wildcard matching mechanism or double evaluation of OGNL Expression allows remote command execution.
Who should read this | All Struts 2 developers and users |
---|---|
Impact of vulnerability | Remote command execution, remote server context manipulation, injection of malicious client side code |
Maximum security rating | Highly Critical |
Recommendation | Developers should immediately upgrade to Struts 2.3.14.3 |
Affected Software | Struts 2.0.0 - Struts 2.3.14.2 |
Reporter | Jon Passki from Coverity Security Research Laboratory reported directly to [email protected] and via blog post |
CVE Identifier |
Struts 2 allows define action mapping base on wildcards, like in example below:
If a request doesn't match any other defined action, it will be matched by *
and requested action name will be used to load JSP file base on the name of action. And as value of {1
} is threaten as an OGNL expression, thus allow to execute arbitrary Java code on server side. This vulnerability is combination of two problems:
TextParseUtil.translateVariables
when combination of $
and %
open chars is used.#foo
As you can notice, action name is resolved based on user input and you can put any arbitrary code to perform attack.
execute()
method as below:
foobar
header, it should be 3
As you can notice, passed value of message
parameter was used to set value of foobar
header and the value was double evaluated - first time when ${message
} was evaluated, secondly when parsed value (${%{1+2
}}) was evaluated again.
With the new version actions' names whitelisting was introduced and by default is set to accept actions that match the following regex:
user can change the definition by setting up a new constant in struts.xml as below:
Double evaluation of passed expression was removed from OgnlTextParser
which is used by TextParseUtil.translateVariables
.