We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
arch: x64 device: Emulator from Android Studio Tested API versions: 28 and 31
command: frida -U -f com.android.contacts -l _agent.js --no-pause
frida -U -f com.android.contacts -l _agent.js --no-pause
code:
const Interruptor = require('./android-x64-strace.min.js').target.LinuxX64(); Interruptor.newAgentTracer({ }).start();
The script hooks threads and prints some syscalls but the app itself freezes, seems like the main thread never resumes or something like that.
The text was updated successfully, but these errors were encountered:
1/ Using Interruptor without configuration is not recommended :
2/ Interruptor is not yet able to follow fork/clone
3/ The aim of Interruptor is to trigger/stop syscall tracing from hook, else stracedoes the job
strace
Interruptor is more designed to hook some syscall when a specific library is loaded or when another hook is trigged
Sorry, something went wrong.
No branches or pull requests
arch: x64
device: Emulator from Android Studio
Tested API versions: 28 and 31
command:
frida -U -f com.android.contacts -l _agent.js --no-pause
code:
The script hooks threads and prints some syscalls but the app itself freezes, seems like the main thread never resumes or something like that.
The text was updated successfully, but these errors were encountered: