1、frida入门教程-安装

本人环境为windows,linux 类同。

1、安装python (内含pip)

https://www.python.org/downloads/release/python-372/

pip 最常用命令 。参考:https://pypi.python.org/pypi/pip
获取帮助
pip --help
升级 pip
pip install -U pip
安装包
pip install SomePackage
卸载包 
pip uninstall SomePackage
升级指定的包
pip install -U SomePackage
搜索包
pip search SomePackage
查看指定包的详细信息
pip show -f SomePackage
列出已安装的包
pip freeze or pip list
查看可升级的包
pip list -o

2、安装 python工具包 frida 和frida-tools。在cmd 里输入:

pip install frida
pip install frida-tools

天朝网络 可能会报错“Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='pypi.org', port=443): Read timed out. (read timeout=15)")': ”

所以我们可以使用豆瓣镜像。执行:

pip install --index-url https://pypi.douban.com/simple scipy
pip install frida
pip install frida-tools

成功在电脑上安装了frida和frida-tools。

3、在已root的手机上安装frida-server,并启动frida-server

在https://github.com/frida/frida/releases 选择版本下载。frida-server 是一个守护进程,通过TCP和Frida核心引擎通信,默认的监听端口是27042 。注意:版本和类型对应,框架和设备对应 。如 我下载的就是“frida-server-12.4.0-android-arm64.xz”,解压zip后将

adb push frida-server-12.4.0-android-arm64 /data/local/tmp/frida-server
adb shell
cd /data/local/tmp
chmod 777 frida-server
./frida-server

4、新开一个cmd。转发android tcp端口到本地,并测试

adb forward tcp:27042 tcp:27042
adb forward tcp:27043 tcp:27043
frida-ps -U 

1、frida入门教程-安装_第1张图片

成功!接下来就可以和frida交互了。

 

如果执行“frida -U -f 包名”出现:

Failed to spawn: unable to handle 64-bit processes due to build configuration

则需要回到第三步,选择对应 64位版本的frida-server。

你可能感兴趣的:(android安全与逆向)