Mac OS 安装frida

安装frida和frida-tools

Python是基础,提前装好Python

终端执行

复制代码
python3 -m pip install frida

如果出现error 按照提示处理

信息提示:brew install pipx

于是终端执行:

复制代码
brew install pipx

安装frida:

复制代码
pipx install frida

安装frida-tools

复制代码
pipx install frida-tools

检查是否安装成功:

复制代码
frida-ps -U

如安装卡死、超时可使用国内镜像:

复制代码
sudo pipx install frida -i 镜像源url 

注:清华:https://pypi.tuna.tsinghua.edu.cn/simple

中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/

华中理工大学:http://pypi.hustunique.com/

山东理工大学:http://pypi.sdutlinux.org/

豆瓣:http://pypi.douban.com/simple/

安装frida服务端:frida-server

frida release 传送门

Android simulator 的架构都是 x86架构 ,真机 一般是 ARM 架构的。

(注:下载版本必须和虚拟环境 Frida --v 相同)

推送frida-server到root过的手机

下载后解压文件,并将文件重命名为:frida-server ,然后推送到手机

复制代码
adb push frida-server /data/local/tmp

修改权限并运行frida-server

复制代码
adb shell
su
cd /data/local/tmp/
chmod 777 frida-server
./frida-server

如果要启动frida-server作为后台进程可启用命令

复制代码
./frida-server &

正常启动后,另开一个终端,使用 frida-ps -U 命令检查frida是否正常运行

相关推荐
ghostwritten8 小时前
macOS安装配置Unbound DNS完整指南
macos·策略模式·dns
超龄超能程序猿9 小时前
Vue3 + Electron 技术栈下 MAC 地址获取的方法、准确性优化与应对策略
macos·electron·策略模式
ihui数学建模21 小时前
【Mac版】Linux 入门命令行快捷键+联想记忆
linux·运维·macos
可曾去过倒悬山2 天前
mac操作笔记
macos
可曾去过倒悬山2 天前
Mac上优雅简单地使用Git:从入门到高效工作流
git·elasticsearch·macos
山楂树の2 天前
模型优化——在MacOS 上使用 Python 脚本批量大幅度精简 GLB 模型(通过 Blender 处理)
python·macos·3d·图形渲染·blender
光头才能变强2 天前
Mac安装Navicat教程Navicat Premium for Mac v17.1.9 Mac安装navicat【亲测】
macos
Frilled Lizard2 天前
解决mac下git pull、push需要输入密码
git·macos
是小崔啊2 天前
Mac下的Homebrew
macos
0wioiw03 天前
Apple基础(Xcode①-项目结构解析)
ide·macos·xcode