mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-24 07:51:52 +08:00
feat: support AgentAttacher Packer
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
import java.lang.instrument.Instrumentation;
|
||||
|
||||
/**
|
||||
* @author ReaJason
|
||||
* @since 2025/5/22
|
||||
*/
|
||||
public class Agent {
|
||||
public static void premain(String args, Instrumentation inst) {
|
||||
System.out.println("hello premain");
|
||||
}
|
||||
|
||||
public static void agentmain(String args, Instrumentation inst) {
|
||||
System.out.println("hello agentmain");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user