0
点赞
收藏
分享

微信扫一扫

frida打印类下方法模板

林塬 2022-08-27 阅读 90

Java.use('类名').class.getDeclaredMethods().forEach(function (method) {
var methodName = method.toString();
console.log("method name = " + methodName);
try {
// .. hook here
} catch (e) {
console.error(methodName, e);
}
});



举报

相关推荐

0 条评论