-
-
[分享] Android13 安装最新版 Frida
-
发表于:
2023-6-26 11:31
7971
-
[分享] Android13 安装最新版 Frida
<table><tr><td bgcolor=orange>本文所有教程及源码、软件仅为技术研究。不涉及计算机信息系统功能的删除、修改、增加、干扰,更不会影响计算机信息系统的正常运行。不得将代码用于非法用途,如侵立删!</td></tr></table>
Android13 安装最新版 Frida
环境
- win10
- Pixel4
- Android13
- Python3.9
- Frida16.1.0
- Frida-tools12.1.3
PC安装frida和frida-tools
注意frida和python frida-tools的版本匹配,Frida与Frida-tools对应关系
最新版安装:
1 2 3 4 | pip install --user -i https://pypi.tuna.tsinghua.edu.cn/simple frda
pip install --user -i https://pypi.tuna.tsinghua.edu.cn/simple frda-tools
|
指定版本安装:
1 2 3 4 | pip install --user -i https://pypi.tuna.tsinghua.edu.cn/simple frda==16.1.0
pip install --user -i https://pypi.tuna.tsinghua.edu.cn/simple frda-tools==12.1.3
|
查看版本:
1 2 3 4 5 6 7 8 9 10 11 12 13 | PS C:\Users\Administrator> frida version
____
/ _ | Frida 16.1.0 - A world-class dynamic instrumentation toolkit
| (_| |
> _ | Commands:
/_/ |_ | help -> Displays the help system
. . . . object? -> Display information about 'object'
. . . . exit/quit -> Exit
. . . .
. . . . More info at https://frida.re/docs/home/
. . . .
. . . . Connected to Local System (id=local)
Failed to spawn: unable to find process with name 'version'
|
手机安装frida-server
在 官方github页面的release标签里,找到对应版本的frida-server
注意要匹配系统和架构,比如arm和arm64就不能搞错
Frida 常用命令
启动frida-server服务
adb shell命令进入到手机中去,执行以下命令:
1 2 3 4 5 6 7 8 | $ adb shell
bullhead:/ $ su
bullhead:/
root
bullhead:/
bullhead:/data/local/tmp
bullhead:/data/local/tmp
[1] 6669
|
此时在电脑上新开一个shell,运行frida-ps -U命令,即可显示手机中正在运行的进程。
关闭frida-server服务
查看frida进程
杀死进程
端口转发
1 | adb forward tcp:27042 tcp:27042
|
<table><tr><td bgcolor=orange>本文仅供学习交流使用,如侵立删!</td></tr></table>
[培训]内核驱动高级班,冲击BAT一流互联网大厂工作,每周日13:00-18:00直播授课