added android sdk so i don't have to keep manually reinstalling it

This commit is contained in:
Yan 2016-04-04 13:17:47 -07:00
parent a501a9f11e
commit db91415a77
2 changed files with 12 additions and 0 deletions

View file

@ -70,6 +70,7 @@ Installers for the following tools are included:
| stego | [stegdetect](http://www.outguess.org/) | Steganography detection/breaking tool. | <!--tool--><!--test-->
| stego | [stegsolve](http://www.caesum.com/handbook/stego.htm) | Image steganography solver. | <!--tool--><!--test-->
| android | [apktool](https://ibotpeaches.github.io/Apktool/) | Dissect, dis-assemble, and re-pack Android APKs | <!--tool--><!--test-->
| android | [android-sdk](http://developer.android.com/sdk) | The android SDK (adb, emulator, etc). | <!--tool--><!--no-test-->
There are also some installers for non-CTF stuff to break the monotony!

11
android-sdk/install Normal file
View file

@ -0,0 +1,11 @@
#!/bin/bash -e
[ -e android-sdk_r24.4.1-linux.tgz ] || wget https://dl.google.com/android/android-sdk_r24.4.1-linux.tgz
[ -e android-sdk-linux ] || tar xfz android-sdk_r24.4.1-linux.tgz
mkdir -p bin
cd android-sdk-linux
python -c 'for i in range(10): print "y"+"\n"*1024' | tools/android update sdk --no-ui
cd ../bin
ln -sf ../android-sdk-linux/platform-tools/{adb,fastboot} .