美文网首页
frida安装与配置

frida安装与配置

作者: 我叫王也道长 | 来源:发表于2024-01-29 16:57 被阅读0次

下载夜神模拟器 x86_64

下载python 3.8.x

下载 frida-server

https://github.com/frida/frida/releases/download/12.8.0/frida-server-12.8.0-android-x86_64.xz

unxz frida-server-12.8.0-android-x86_64.xz

安装frida

pip3 install frida==12.8.0
pip3 install frida-tools==5.3.0

启动frida-server

adb root
adb remount
adb push frida-server-12.8.0-android-x86_64 /data/local/tmp/fs
adb shell
cd /data/local/tmp
chmod +x fs
./fs

测试frida

frida-ps -U

test.js

console.log('script loaded successfully');
Java.perform(function x() {
    console.log('test');
});

frida -U -l test.js com.tencent.mm

相关文章

网友评论

      本文标题:frida安装与配置

      本文链接:https://www.haomeiwen.com/subject/ptagodtx.html