feat: support AgentAttacher Packer

This commit is contained in:
ReaJason
2025-05-28 01:22:54 +08:00
parent f349586e09
commit d4df2f6ed7
24 changed files with 8361 additions and 11 deletions
@@ -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");
}
}