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 frida-trace there is a -W option that can be used to await spawn, i.e. one can specify API filter with -j flag for a Android APK and use -W to have frida wait for the app to be started.
So based on the above, it appears the app has to be started before JS scripts can be added to monitor APIs.
My questions are as follows:
How is attachable state defined ? Does it mean process has started executing ?
Is there a way in python to match behavior of the -W flag, i.e. mention which scripts need to be loaded before app process is started, and then start the app process ?
Does spawn / resume by default starts the main activity of the specified app ?
The text was updated successfully, but these errors were encountered:
In
frida-trace
there is a -W option that can be used to await spawn, i.e. one can specify API filter with -j flag for a Android APK and use -W to have frida wait for the app to be started.In python, I see the following APIs:
frida-python/frida/core.py
Line 821 in ebd797e
frida-python/frida/core.py
Line 571 in ebd797e
So based on the above, it appears the app has to be started before JS scripts can be added to monitor APIs.
My questions are as follows:
The text was updated successfully, but these errors were encountered: