Modes Of Introduction
Architecture and Design
Implementation
Applicable Platforms
Language
Name: Java (Undetermined)
Common Consequences
Scope |
Impact |
Likelihood |
Confidentiality | Read Application Data | |
Integrity | Execute Unauthorized Code or Commands | |
Observed Examples
References |
Description |
| Product does not neutralize ${xyz} style expressions, allowing remote code execution. (log4shell vulnerability in log4j) |
Potential Mitigations
Phases : Architecture and Design
Avoid adding user-controlled data into an expression interpreter when possible.
Phases : Implementation
If user-controlled data must be added to an expression interpreter, one or more of the following should be performed:
- Validate that the user input will not evaluate as an expression
- Encode the user input in a way that ensures it is not evaluated as an expression
Phases : System Configuration // Operation
The framework or tooling might allow the developer to disable or deactivate the processing of EL expressions, such as setting the isELIgnored attribute for a JSP page to "true".
Detection Methods
Automated Static Analysis
Automated static analysis, commonly referred to as Static Application Security Testing (SAST), can find some instances of this weakness by analyzing source code (or binary/compiled code) without having to execute it. Typically, this is done by building a model of data flow and control flow, then searching for potentially-vulnerable patterns that connect "sources" (origins of input) with "sinks" (destinations where the data interacts with external components, a lower layer such as the OS, etc.)
Effectiveness : High
Vulnerability Mapping Notes
Justification : This CWE entry is at the Base level of abstraction, which is a preferred level of abstraction for mapping to the root causes of vulnerabilities.
Comment : Carefully read both the name and description to ensure that this mapping is an appropriate fit. Do not try to 'force' a mapping to a lower-level Base/Variant simply to comply with this preferred level of abstraction.
NotesNotes
The interrelationships and differences between CWE-917 and CWE-1336 need to be further clarified.
In certain versions of Spring 3.0.5 and earlier, there was a vulnerability (CVE-2011-2730) in which Expression Language tags would be evaluated twice, which effectively exposed any application to EL injection. However, even for later versions, this weakness is still possible depending on configuration.
References
REF-911
Expression Language Injection
Stefano Di Paola, Arshan Dabirsiaghi.
https://mindedsecurity.com/wp-content/uploads/2020/10/ExpressionLanguageInjection.pdf REF-912
Remote Code with Expression Language Injection
Dan Amodio.
http://danamodio.com/appsec/research/spring-remote-code-with-expression-language-injection/ REF-1279
Neutralizing Your Inputs: A Log4Shell Weakness Story
CWE/CAPEC.
https://medium.com/@CWE_CAPEC/neutralizing-your-inputs-a-log4shell-weakness-story-89954c8b25c9 REF-1280
Expression Language Injection
OWASP.
https://owasp.org/www-community/vulnerabilities/Expression_Language_Injection
Submission
Name |
Organization |
Date |
Date release |
Version |
CWE Content Team |
MITRE |
2013-02-15 +00:00 |
2013-02-21 +00:00 |
2.4 |
Modifications
Name |
Organization |
Date |
Comment |
CWE Content Team |
MITRE |
2017-11-08 +00:00 |
updated References |
CWE Content Team |
MITRE |
2018-03-27 +00:00 |
updated Relationships |
CWE Content Team |
MITRE |
2020-02-24 +00:00 |
updated Relationships |
CWE Content Team |
MITRE |
2020-08-20 +00:00 |
updated Relationships |
CWE Content Team |
MITRE |
2020-12-10 +00:00 |
updated Relationships |
CWE Content Team |
MITRE |
2021-07-20 +00:00 |
updated References |
CWE Content Team |
MITRE |
2021-10-28 +00:00 |
updated Relationships |
CWE Content Team |
MITRE |
2022-06-28 +00:00 |
updated Description, Maintenance_Notes, Observed_Examples, Potential_Mitigations, References, Relationships |
CWE Content Team |
MITRE |
2023-01-31 +00:00 |
updated Description |
CWE Content Team |
MITRE |
2023-04-27 +00:00 |
updated Detection_Factors, References, Relationships |
CWE Content Team |
MITRE |
2023-06-29 +00:00 |
updated Mapping_Notes |