将一个脚本注入到Android目标进程
frida -U -l myhook.js com.xxx.xxxx
- -U 指定对USB设备操作
- -l 指定加载一个Javascript脚本
- 最后指定一个进程名,如果想指定进程pid,用
-p
选项。正在运行的进程可以用frida-ps -U
命令查看
重启一个Android进程并注入脚本
重启App并注入脚本
frida -U -l myhook.js -f com.xxx.xxxx --no-pause
参数解释:
- -f 指定一个进程,重启它并注入脚本
- --no-pause 自动运行程序
这种注入脚本的方法,常用于hook在App就启动期就执行的函数。