Skip to content

Latest commit

 

History

History
53 lines (36 loc) · 727 Bytes

File metadata and controls

53 lines (36 loc) · 727 Bytes

Install Frida

Ref : https://frida.re/docs/quickstart/

python3 -m venv venv
source venv/bin/activate
pip install frida-tools

Download Frida server and push to android

Download
wget https://github.com/frida/frida/releases/download/16.6.6/frida-server-16.6.6-android-x86.xz
Extract
tar --xz -xvf frida-server-16.6.6-android-x86.xz
Push to android
adb push frida-server-16.6.6-android-x86 /data/local/tmp
Start server
adb shell
Give execution permission
cd /data/local/tmp; chmod +x frida-server-16.6.6-android-x86
Run Server
./frida-server-16.6.6-android-x86