Frida

Installation

pip install frida
pip install frida-tools

# Select the version you have on your system
frida --version
16.5.5

# Know what architecture you have remotely,
adb shell getprop ro.product.cpu.abi
#e.g output : 
arm64-v8a

# Now select version (download frida-server of that version you have of frida on system)
https://github.com/frida/frida/releases/download/16.5.5/frida-server-16.5.5-android-arm64.xz

Now unzip the file, and push it via ADB/charging cable

SSL pinning bypass

Download this script,

After download put it in the APK.

Cmdline

frida-ps -U : List all the process runing in your Android

Last updated