首先执行:
sudo /Applications/Python\ 3.8/Install\ Certificates.command
sudo /Applications/Python\ 2.7/Install\ Certificates.command
执行完之后(如果执行报错就重启下):
pip3 install frida
pip3 install frida-tools
这时mac端frida就安装完成了
frida --version
查看版本,手机需要下载与之对应的版本
如果要执行hook需要在手机端运行frida-server端
首先下载frida-server(手机需要下载与PC对应的版本)
然后将下载好的frida-server推送到手机的/data/local/tmp
目录
给给server执行权限 chmod 777 /data/local/tmp/frida-serve
后台运行frida :
/data/local/tmp/frida-serve &
这时电脑就可以执行frida hook脚本了
如
frida -U -l frida_tk.js --no-pause -f com.ss.android.ugc.trill
网友评论