Files
codeql/java/ql/test/stubs/mvel2-2.4.7/org/mvel2/MVEL.java
Artem Smotrakov c6c4c2c99b Java: Add a query for MVEL injections
- Added experimental/Security/CWE/CWE-094/MvelInjection.ql
- Added experimental/Security/CWE/CWE-094/MvelInjectionLib.qll
- Added a qhelp file with an example of vulnerable code
- Added tests and stubs for mvel2-2.4.7
2020-06-05 17:13:24 +03:00

9 lines
303 B
Java
Generated

package org.mvel2;
import java.io.Serializable;
public class MVEL {
public static Object eval(String expression) { return null; }
public static Serializable compileExpression(String expression) { return null; }
public static Object executeExpression(Object compiledExpression) { return null; }
}