更新 frida抓包.md
parent
b46444dea2
commit
c8b014e457
37
frida抓包.md
37
frida抓包.md
|
|
@ -1,2 +1,39 @@
|
||||||
# frida抓包
|
# frida抓包
|
||||||
|
|
||||||
|
## 环境和工具准备:
|
||||||
|
|
||||||
|
- python 3.x
|
||||||
|
- r0capture
|
||||||
|
- frida / frida-tools
|
||||||
|
- apkshell
|
||||||
|
|
||||||
|
## r0capture
|
||||||
|
|
||||||
|
```shell
|
||||||
|
git clone https://github.com/r0ysue/r0capture
|
||||||
|
```
|
||||||
|
|
||||||
|
## frida
|
||||||
|
|
||||||
|
frida-server下载地址
|
||||||
|
|
||||||
|
```
|
||||||
|
https://github.com/frida/frida/releases
|
||||||
|
```
|
||||||
|
|
||||||
|
虚拟环境安装frida和frida- tools
|
||||||
|
|
||||||
|
```shell
|
||||||
|
pip install frida
|
||||||
|
```
|
||||||
|
|
||||||
|
```shell
|
||||||
|
pip install frida-tools
|
||||||
|
```
|
||||||
|
|
||||||
|
使用Frida查看包进程
|
||||||
|
|
||||||
|
```shell
|
||||||
|
frida-ps -U | grep "包名"
|
||||||
|
```
|
||||||
|
|
||||||
|
|
|
||||||
Reference in New Issue