用frida突破SSL pinning抓包
程序员文章站
2022-11-02 10:57:10
python任意版本安装frida,手机端使用的mumu模拟器,其他的也可以pip install fridaadb 连接 mumu模拟器查看内核adb shell sucat /proc/cupinfo模拟器一般是x86居多根据cpu版本去下载相应frida-server,然后去下载https://github.com/frida/frida/releases相应的版本之后解压处理 将文件push 进 /data/local/tmp 这个目录adb push...
python任意版本安装frida,手机端使用的mumu模拟器,其他的也可以
pip install frida
adb 连接 mumu模拟器
查看内核
adb shell
su
cat /proc/cupinfo
模拟器一般是x86居多
根据cpu版本去下载相应frida-server,然后去下载https://github.com/frida/frida/releases相应的版本
之后解压处理 将文件push 进 /data/local/tmp 这个目录
adb push .\frida-server-12.10.4-android-x86 /data/local/tmp/frida-server
之后需要设置权限,就可以 测试frida
测试命令:./frida-server
之后另外开启一个命令窗口运行命令:frida-ps -U
就可以hook进程了
部分不能正常charles抓包的APP打开后
命令输入:
frida -U com.gaana —no-pause -l hook.js
就可以
本文地址:https://blog.csdn.net/qq_42196922/article/details/107322504
下一篇: 安装android NDK详细步骤