雷電模擬器安裝frida

ugooo發表於2020-12-31

鑑於對java語言理解有限,Xposed的一些高階用法,總沒法愉快的用起來,轉來研究下frida,記錄下安裝步驟:

1, 下載python

我用的是Anaconda3,它整合了python3.7和python經常用到的各種庫,簡單方便。

2,安裝frida和frida-tools庫

因為frida比較小眾,Anaconda並沒有預裝,所以需要手動安裝
國內裝python庫是很慢的,這裡用阿里的映象庫

pip install frida -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com

pip install frida-tools -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com

3,安裝模擬器

這裡我用的是雷電模擬器,雷電4,低於4的版本,frida-server跑不起來。

4,下載frida-server上傳至模擬器

下載地址 https://github.com/frida/frida/releases
我下載的是 frida-server-14.2.2-android-x86.xz,
解壓得到frida-server-14.2.2-android-x86檔案
開cmd,上傳server檔案至模擬器

adb push C:\Users\pc\***\frida-server-14.2.2-android-x86 /data/local/tmp/

5,啟動服務

啟動服務

adb shell
cd /data/local/tmp/
chmod 777 frida-server-14.2.2-android-x86
./frida-server-14.2.2-android-x86

相關文章