Created
September 15, 2019 12:28
-
-
Save vavkamil/91c77a6f32fb0eaac4498de662e2aa56 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ apt-get update && apt-get upgrade --assume-yes | |
$ | |
$ pip3 install frida-tools | |
$ pip3 install objection | |
$ | |
$ sudo apt-get install android-tools-adb android-tools-fastboot | |
$ | |
$ wget wget https://github.com/frida/frida/releases/download/12.7.0/frida-server-12.7.0-android-arm64.xz | |
$ unxz frida-server-12.7.0-android-arm64.xz | |
$ mv frida-server-12.7.0-android-arm64 frida-server | |
$ | |
$ adb connect | |
$ adb root | |
$ adb push frida-server /data/local/tmp/ | |
$ adb shell "chmod 755 /data/local/tmp/frida-server" | |
$ adb shell "/data/local/tmp/frida-server &" | |
$ | |
$ frida-ps -Ua | |
$ objection -g c**********n explore -q | |
# android sslpining disable | |
# |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment