Files
MemShellParty/vul/vul-springboot3/src/test/java/CommandExec.java
T
2025-08-13 23:53:40 +08:00

16 lines
255 B
Java

import java.io.IOException;
/**
* @author ReaJason
* @since 2025/6/27
*/
public class CommandExec {
static {
try {
java.lang.Runtime.getRuntime().exec("open -a Calculator");
} catch (IOException e) {
}
}
}