![hook框架frida某个类下的所有方法名字<a href=https://www.51yma.cn/muban/ target=_blank class=infotextkey>模板</a>[Python常见问题]](https://www.51yma.cn/d/file/jiaocheng/python/15.jpg)
模板
function getfunc() {
java.perform(function () {
var class_name = java.user("你反编译需要拿到的类名");
var methods=class_name.getDeclaredMethods();
for(var j =0;j<methods.length;j++){
console.log(methods[j])
method_name=methods[j].getName()
console.log(method_name)
}
})
}
