关于安卓6版本安装frida
1.下载相关工具
- Frida-server: 运行在设备上
- https://github.com/frida/frida/releases
- 推荐选择版本:12.8.10 更高版本可能会出错
- Frida :Python模块
- https://pypi.org/project/frida/#files
- 版本为12.8.10,将下载内容放在/Users/username中
- pip3 install friad
- Frida-tools:提供cli工具命令 跟Frida-server交互
- pip3 inistall frida-tools==5.3.0
- 版本最好一样,否则容易出现问题,
- Python版本为3.6,Windows可以为3.7的Python
- python版本很重要,一开始我用3.8版本死活安装不上
2.安装
- 1.安装安卓frid-server
- 通过adb命令进行安装frida-server
- adb push frida-server(下载好的frida-server文件) /data/local/tmp/
- 转换为root全选
- cd /data/local/tmp/
- chmod 777 ./frida-server
- ./frida-server 如果夯住,代表安装成功
- 2.测试本机frida是否可用
- frida-ps -U
-
15147 ATFWD-daemon 3531 adbd 13885 android.process.acore 3638 android.process.media```
- 出现代表运行成功