Skip to content

Releases: hackersroot/Mobile-penetration-testing

Android lab setup

17 Apr 04:36
363e3fd
Compare
Choose a tag to compare

frida-tool-configuration

$ pip install frida-tools
$ frida --version

##--adb configuration--##
$ sudo apt-get install adb
$ adb connect
$ adb push ca.der /data/local/tmp
$ adb push frida-server /data/local/tmp

##--In Android device--##
##--You need to know the processor type of the device (Emulator or physical device). Run below command--##

$ adb shell
$ cd /data/local/tmp
$ mv ca.der cer-der.crt
$ chmod 777 frida
$ ./frida server

##--In PC--##
$ frida-ps
$ frida-ps -U

List running applications

$ frida-ps -Ua

List installed applications

$ frida-ps -Uai

Connect Frida to the specific device

$ frida-ps -D 0736027d1d6d3b02

##-For SSl pining Bypass--##
$ frida -U -f -l script.js