清单:Mac系统、夜神模拟器3.8.5.7、安卓7.1、X86架构、frida-server-16.0.8-android-x86。
--------mac安装frdia的版本和模拟器安装的frida版本要一致。
模拟器开启debug模式,mac电脑可以通过adb连接
1、adb devices
2、adb connect 127.0.0.1:62001
3、adb shell getprop ro.product.cpu.abi
4、adb push frida-server-16.0.8-android-x86 /data/local/frida
5、adb shell
6、到 /data/local目录下,使用chmod
命令修改权限为可执行 : chmod 777 frida
7、执行setenforce 0,关闭SELinx。
8、启动frida: ./frida 或 ./frida & (后台运行)
mac安装frida:
pip install frida -i https://pypi.tuna.tsinghua.edu.cn/simple
pip install frida-tools -i https://pypi.tuna.tsinghua.edu.cn/simple
frida-ps -U 查看是否成功。
然后安装camile
git clone https://github.com/zhengjim/camille.git
cd camille
pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
python camille.py -h
详细使用见:
https://www.freebuf.com/sectool/353068.html
https://github.com/zhengjim/camille
标签:camille,Camille,隐私,adb,https,edu,frida,安装,检测工具
From: https://www.cnblogs.com/blacksunny/p/17028932.html