目录
github地址:https://github.com/frida/frida
pip install frida-tools # CLI tools
pip install frida # Python bindings
npm install frida # Node.js bindings
查看安装版本
pip list|grep frida
frida 14.2.18
frida-tools 9.2.5
再次执行pip pip install frida
可显示安装路径
/.local/lib/python3.9/site-packages$ ls
frida frida-14.2.18.dist-info _frida.cpython-39-x86_64-linux-gnu.so frida_tools frida_tools-9.2.5.dist-info
服务端下载地址https://github.com/frida/frida/releases
需要找到对应CPU型号的frida-server,安卓系统执行 adb shell getprop ro.product.cpu.abi
命令可查看cpu型号。
aria2c https://github.com/frida/frida/releases/download/14.2.18/frida-server-14.2.18-android-arm.xzc
unar frida-server-14.2.18-android-arm.xz
adb push frida-server-14.2.18-android-arm /data/local/tmp
adb shell su
cd /data/local/tmp
chmod 777 frida-server-14.2.18-android-arm
#手机端
./frida-server-14.2.18-android-arm
#PC端
frida-ps -U
PID Name
----- -----------------------------------------
215 adbd
12681 android.process.acore
12156 app_d
202 bridgemgrd
12555 com.android.cellbroadcastreceiver
11124 com.android.nfc
11111 com.android.phone
11696 com.android.providers.calendar
......
手机扫一扫
移动阅读更方便
你可能感兴趣的文章