Description
Hi, first thank you for writing this script.
I am trying to run it on unrooted android using frida gadget.
The server has been included correctly in the apk and loaded correctly (confirmed with frida-ps -R).
But can't run it using jnitrace.
I started the app with gadget config set to "wait".
I tried the following code but all failed with error related to target:
jnitrace: error: the following arguments are required: target
The command tested are the following:
jnitrace -l * -R Gadget
jnitrace -l * -R re.frida.Gadget
jnitrace -l * -R localhost
jnitrace -l * -R localhost:27042
jnitrace -l * -R 127.0.0.1:27042
jnitrace -l * -R 127.0.0.1
None are working.
If I tried to run:
frida --codeshare chame1eon/jnitrace -R Gadget
It works but the output is a little messy and prefer using the python wrapper of jnitrace instead.
Any idea how to make it work?
Thank you.