mirror of
https://github.com/zardus/ctf-tools
synced 2025-03-14 22:06:58 +00:00
added android sdk so i don't have to keep manually reinstalling it
This commit is contained in:
parent
a501a9f11e
commit
db91415a77
2 changed files with 12 additions and 0 deletions
|
@ -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
11
android-sdk/install
Normal 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} .
|
Loading…
Add table
Reference in a new issue