一、Frida基础依赖安装
frida
frida-server
安装方式1--pip:
1 pip install frida 2 pip install frida-servera
安装方式2--Pycarm--Settings-
二、模拟器安装
雷电模拟器:下载地址:https://www.ldmnq.com/
默认安装,安装完成后进入路径
三、Frida-server 手机端下载
1、下载地址:https://github.com/frida/frida/releases
2、下载完毕后解压,将文件重命名为frida84,复制到雷电的安装目录【E:\leidian\LDPlayer4】
cmd进入雷电的安装目录输入如下命令
adb push frida86 /data/local/tmp/ adb shell su cd /data/local/tmp/ chmod 777 frida86 ./frida86
3、再打开个窗口,建立端口连接
四、执行简单的python代码,检验效果
1 import frida 2 3 remote_dev = frida.get_remote_device() 4 print(remote_dev) 5 front_app = remote_dev.get_frontmost_application() 6 print(front_app) 7 8 process = remote_dev.enumerate_processes() 9 for i in process: 10 print(i)
执行后效果如果,代表成功
标签:remote,--,配置,dev,frida,Frida,安装 From: https://www.cnblogs.com/luoxinmoli/p/17463884.html