chame1eon / jnitrace

A Frida based tool that traces usage of the JNI API in Android apps.
MIT License
1.62k stars 259 forks source link

filter not work #23

Closed RonaldinhoL closed 3 years ago

RonaldinhoL commented 3 years ago

-i Get -e -e . --ignore-env --ignore-vm

i had try many option, but none of them work, it would print evething called

frida-server 14.0.8 android 10, pixel QP1A.191005.007.A3

RonaldinhoL commented 3 years ago

by the way, what is the priority of these option?

chame1eon commented 3 years ago

Hi, Thanks for filing an issue. Can you let me know what app you were testing on so I can reproduce? On your other question, include takes precedent, so whatever your regex includes will be there, regardless of whether you also exclude something similar.

As a guess, can you try:

-i Get.*

That might work. All those filters are regex, so when trying to trace methods that begin Get, you must use the regex Get.*

Thanks

chame1eon commented 3 years ago

Closing as not heard an update in over a month.