You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In newest Android versions (>= 13) I am facing an issue when I try to hook all the methods of a java class. More specifically, given the following function:
I can effectively hook all the methods of a class in Android 9 and get the correct logs:
Using the traceMethod , same app, in Android 13, yields the following output:
Failing to display the logs of methods called within the onCreate. Subsequently, removing the onCreate hook, displays the log of com.airbnb.android.lib.deeplinks.activities.DeepLinkEntryActivity.ʕ but fails to follow the calls to the class's methods started from within the ʕ method:
My Android 13 device's fingerprint is the following:
Java.perform(function(){letclassName1=Java.use("com.intent.sender.min.MainActivity");className1.func.implementation=function(){console.log("FRIDA: in func");this.func();}className1.func1.implementation=function(){console.log("FRIDA: in func1")}});
In newest Android versions (>= 13) I am facing an issue when I try to hook all the methods of a java class. More specifically, given the following function:
and the following calls:
I can effectively hook all the methods of a class in Android 9 and get the correct logs:
Using the traceMethod , same app, in Android 13, yields the following output:
Failing to display the logs of methods called within the
onCreate
. Subsequently, removing theonCreate
hook, displays the log ofcom.airbnb.android.lib.deeplinks.activities.DeepLinkEntryActivity.ʕ
but fails to follow the calls to the class's methods started from within theʕ
method:My Android 13 device's fingerprint is the following:
[google/barbet/barbet:13/TQ3A.230901.001/10750268:user/release-keys]
While the Android 9 fingerprint is the following:
[samsung/dream2ltexx/dream2lte:9/PPR1.180610.011/G955FXXUCDUD1:user/release-keys]
The text was updated successfully, but these errors were encountered: