移動滲透測試中的菜刀html
下載:http://santoku-linux.com/download/java
預覽:python
安裝JADXlinux
首先須要安裝Java8,這裏安裝爲open-jdk8android
$ sudo add-apt-repository ppa:openjdk-r/ppagit
$ sudo apt-get update
$ sudo apt-get install openjdk-8-jdkgithub
$ sudo update-alternatives --config javashell
$ git clone https://github.com/skylot/jadx.git
$ cd jadx
$ ./gradlew dist測試
安裝 IDAgradle
下載連接:https://www.hex-rays.com/products/ida/support/download.shtml
安裝 Frida
$ sudo apt-get install python-pip
$ sudo pip install frida-tools
安裝 frida-server
下載:
https://github.com/frida/frida/releases
adb devices
adb push frida-server-10.4.0-android-arm /data/local/tmp/frida
adb shell su -c 「chmod 755 /data/local/tmp/frida」
adb shell su -c 「./data/local/tmp/frida &」
測試 Frida
Python 2.7.15rc1 (default, Nov 12 2018, 14:31:15)
[GCC 7.3.0] on linux2
Type 「help」, 「copyright」, 「credits」 or 「license」 for more information.
>>> import frida # import frida tools
>>> frida.get_usb_device() # enum avaiable devices
Device(id=」192.168.56.101:5555", name=」Genymotion Samsung Galaxy S7", type=’usb’)
>>>
完結!!!