Frida
Update Frida Tools (CLI)
pip install -U frida-toolsAdd Frida to device
Download from: https://github.com/frida/frida/releases
unxz frida-server-12.X.X-android-x86.xz
adb push frida-server-12.X.X-android-x86 /data/local/tmpOn a real device you will need to get the android-arm version
Starting Frida Server
adb root
adb shell
cd /data/local/tmp
./frida-server-12.X.X-android-x86 &Disable SSL pinning
frida -U --codeshare sowdust/universal-android-ssl-pinning-bypass-2 --no-paus -f com.name.nameHooking a Function
Last updated
Was this helpful?