mirror of
https://github.com/github/codeql.git
synced 2026-08-03 17:03:02 +02:00
- 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
9 lines
303 B
Java
Generated
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; }
|
|
} |