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-2009-3867/compile.sh
Views: 11779
1
#!/bin/sh
2
3
javac -target 1.3 -source 1.3 AppletX.java
4
5
jar cvf CVE-2009-3867.jar AppletX.class
6
rm -f AppletX.class
7
8
mv CVE-2009-3867.jar ../../../../data/exploits/CVE-2009-3867.jar
9
10