frida基础
安装frida
根据平台下载并解压对应server
pip install -U frida
pip install -U frida-tools
pip install -U frida-dexdump
运行frida
chmod 777 frida-server
adb push frida-server /data/local/tmp/frida-server
adb shell ./data/local/tmp/frida-server
检查开启状态
frida-ps -U
配置端口
adb forward tcp:27042 tcp:27042 && adb forward tcp:27043 tcp:27043
网友评论