https://www.jianshu.com/p/c349471bdef7
python -m pip install --upgrade pip -i http://mirrors.aliyun.com/pypi/simple --trusted-host mirrors.aliyun.com
pip install frida -i http://mirrors.aliyun.com/pypi/simple --trusted-host mirrors.aliyun.com
pip install frida==12.2.29 -i http://mirrors.aliyun.com/pypi/simple --trusted-host mirrors.aliyun.com
pip install frida==12.2.29 -i https://pypi.tuna.tsinghua.edu.cn/simple
查看Android手机设备设置
getprop ro.product.cpu.abi
Android有 x86、x86_64、arm、arm64
adb push C:\Users\ghy\Desktop\f\frida-core-devkit-12.8.20-android-x86.tar\frida-core-devkit-12.8.20-android-x86.tar /data/local/tmp/
adb push C:\Users\ghy\Desktop\f\frida-server86 /data/local/tmp/
chmod 777 frida-server86
cd data/local/tmp
./frida-server86
列出该设备上运行中的进程
frida-ps -U
列出运行中的程序
frida-ps -Ua
列出安装的程序
frida-ps -Uai
注入脚本:
frida -U -l script.js com.ghy
https://www.sohu.com/a/246175537_557054
https://www.jianshu.com/p/b833fba1bffe
原文:https://www.cnblogs.com/bqh10086/p/12714172.html