frida-java-bridge
frida-java-bridge copied to clipboard
Hooking Reflection causes app crash
Java.perform(function () {
Java.use('java.lang.reflect.Method').invoke.overload('java.lang.Object','[Ljava.lang.Object;').implementatio = function(receiver, args) {
return this.invoke(receiver, args);
};
});
frida-server-12.2.25 Nexus 5X Android 8.1
I want to hook invoke function in Method Class using above code. The app will crash when it launch. While I also encounter "access violation accessing" using frida-server-12.2.11. Any ideas are welcome.