|
|
|
|
|
by cute_boi
1640 days ago
|
|
httptoolkit is best software in market that works so easily and can bypass certs pinning. Here are steps:
Download frida script from httptoolkit server and binary from frida github repo and download httptoolkit app in andriod. Here are my notes. ```
# Copy the server to the device
adb push ./frida-server-$version-android-$arch /data/local/tmp/frida-server
# ^Change this to match the name of the binary you just extracted # Enable root access to the device
adb root # Make the server binary executable
adb shell "chmod 755 /data/local/tmp/frida-server" # Start the server on your device
adb shell "/data/local/tmp/frida-server &" pip3 install frida-tools
frida-ps -U
frida --no-pause -U -l ./frida.js -f com.appname # derived from https://httptoolkit.tech/blog/frida-certificate-pinning/
``` |
|