Skip to content

Commit 969f00c

Browse files
committed
update exec payload source, update generated class.
1 parent 3eaea17 commit 969f00c

File tree

9 files changed

+19
-1
lines changed

9 files changed

+19
-1
lines changed

cmd/payload/calc.class

95 Bytes
Binary file not shown.

cmd/payload/nop.class

45 Bytes
Binary file not shown.

cmd/payload/notepad.class

104 Bytes
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
public class Main {
1+
public class Calc {
22
static {
33
try {
44
Runtime.getRuntime().exec("calc");
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
public class Nop {
2+
static {
3+
try {
4+
// Runtime.getRuntime().exec("notepad");
5+
} catch (Exception e) {
6+
7+
}
8+
}
9+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
public class Notepad {
2+
static {
3+
try {
4+
Runtime.getRuntime().exec("notepad");
5+
} catch (Exception e) {
6+
7+
}
8+
}
9+
}

testdata/calc.class

0 Bytes
Binary file not shown.

testdata/nop.class

45 Bytes
Binary file not shown.

testdata/notepad.class

9 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)