frida环境配置
安装frida运行依赖库及frida-tools
pip3.9.exe install frida 安装frida
frida –version 查看 frida 版本
frida-tools
pip install frida
pip install -i https://mirrors.aliyun.com/pypi/simple/
frida_server :https://github.com/frida/frida/releases
wiresharp :https://www.wireshark.org/download.html
frida server 手机端
https://github.com/frida/frida/releases
测试手机 小米max高配版
adb工具链接手机
adb devices 查看设备列表
推送 frida server 文件到手机
提前解压.xz包再推送
adb push frida-server-14.2.13-android-arm64 /data/local/tmp fs.xz
进入 shell
adb shell
su
如果su提示 permission denied 说明手机已经root 权限管理工具拒绝了执行shell命令 进入手机APP超级root管理应用打开 shell root 权限即可
切换到文件目录
cd /data/local/tmp
更执行权限
chmod 777 fs
执行安装
./fs
python脚本下载