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
adb push /path/to/local/file/frida-server /data/loca/tmp
SSL pinning bypass
Download this script,
After download put it in the APK.
kali:/ # cd /data/local/tmp
kali:/data/local/tmp # ls
frida-server-16.5.5-android-arm64 frida-sslpinbypass.js
kali:/data/local/tmp #
Cmdline
frida-ps -U
: List all the process runing in your Android
Last updated