Frida----安装

介绍

它是本机应用程序的 Greasemonkey,或者更多技术术语,它是一个动态代码检测工具包。它允许您将JavaScript或您自己的库的片段注入Windows,macOS,GNU / Linux,iOS,Android和QNX上的本机应用程序。Frida还为您提供了一些基于Frida API构建的简单工具。这些可以按原样使用,根据您的需要进行调整,或作为如何使用API​​的示例。------------来自chrome自动翻译

官网

https://www.frida.re

安装

需要python的环境

pip install frida
pip install frida-tools

判断自己手机或者模拟器的CPU位数

运行adb命令

adb shell
su
getprop ro.product.cpu.abi

去github下载符合手机的firda-server版本

https://github.com/frida/frida/releases

下载完后,解压压缩包

把firda-server推送到手机

adb push 解压出来的文件名 /data/local/tmp/

设置文件权限

adb shell
su
cd /data/local/tmp/
chmod 777 文件名

运行firda-server,输入这段命令后,这个窗口不要关闭

./文件名

新开一个命令窗口,设置端口映射

adb forward tcp:27042 tcp:27042

查看是否运行成功

firda-ps -U

猜你喜欢

转载自www.cnblogs.com/Hclle/p/10533263.html