We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b99fc06 commit 9fca89fCopy full SHA for 9fca89f
external/source/jre7u17/Exploit.java renamed to external/source/exploits/jre17u17/Exploit.java
external/source/exploits/jre17u17/Makefile
@@ -0,0 +1,17 @@
1
+CLASSES = \
2
+ Exploit.java
3
+
4
+.SUFFIXES: .java .class
5
+.java.class:
6
+ javac -source 1.2 -target 1.2 -cp "../../../../data/java" $*.java
7
8
+all: $(CLASSES:.java=.class)
9
10
+install:
11
+ mv Exploit.class ../../../../data/exploits/jre17u17/Exploit.class
12
+ mv SystemClass.class ../../../../data/exploits/jre17u17/SystemClass.class
13
+ mv Union1.class ../../../../data/exploits/jre17u17/Union1.class
14
+ mv Union2.class ../../../../data/exploits/jre17u17/Union2.class
15
16
+clean:
17
+ rm -rf *.class
0 commit comments