diff --git a/frida抓包.md b/frida抓包.md index a777e3c..307cca9 100644 --- a/frida抓包.md +++ b/frida抓包.md @@ -37,3 +37,23 @@ pip install frida-tools frida-ps -U | grep "包名" ``` +## 运行 r0capture.py + +```bash +python r0capture.py -U 前面记录的目标应用包名 -p xxx.pcap +``` + +``` +python3 r0capture/r0capture.py -U com.vmall.client -p com.vmall.client.pcap +``` + + + +其中 -p 参数用来保存抓包结果,.pcap 是数据报存储格式,包括 Wireshark 在内的很多主流抓包软件都可以生成或者导入 pcap 数据包并分析 + +如果中途提示 hexdump 名称错误,pip 安装一下即可 + +```bash +pip install hexdump +``` +