Merge pull request #93 from LosFuzzys/addtools

add veles and zsteg
This commit is contained in:
Yan 2016-12-30 13:01:29 -08:00 committed by GitHub
commit c2e3b26de5
8 changed files with 27 additions and 1 deletions

View file

@ -80,10 +80,12 @@ Installers for the following tools are included:
| stego | [steganabara](http://www.caesum.com/handbook/stego.htm) | Another image steganography solver. | <!--tool--><!--test-->
| 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-->
| stego | [zsteg](https://github.com/zed-0xff/zsteg) | detect stegano-hidden data in PNG & BMP. | <!--tool--><!--no-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-->
| misc | [z3](https://github.com/Z3Prover/z3) | Theorem prover from Microsoft Research. | <!--tool--><!--times-out-->
| misc | [jdgui](http://jd.benow.ca/) | Java decompiler. | <!--tool--><!--test-->
| misc | [veles](https://codisec.com/veles/) | Binary data analysis and visulalization tool. | <!--tool--><!--test-->
There are also a couple of installers for useful libraries included. Currently
only the python bindings for these libraries are installed.

View file

@ -18,4 +18,4 @@ END
chmod 755 $i
done
ctf-tools-pip install -yU r2pipe
ctf-tools-pip install -U r2pipe

9
veles/install Executable file
View file

@ -0,0 +1,9 @@
#!/bin/bash -e
wget -O src.tar.gz https://codisec.com/wp-content/uploads/2016/12/Veles_2016.12_Source.tar.gz
tar xf src.tar.gz
mkdir build
cd build
cmake -D CMAKE_BUILD_TYPE=Release -D CMAKE_INSTALL_PREFIX:PATH=.. ../veles-2016.12
make -j8
make install

3
veles/install-root-archlinux Executable file
View file

@ -0,0 +1,3 @@
#!/bin/bash -e
pacman -Syu --noconfirm --needed cmake zlib qt5-base

3
veles/install-root-debian Executable file
View file

@ -0,0 +1,3 @@
#!/bin/bash -e
apt-get install -y cmake zlib zlib-dev qtbase5 qtbase5-dev

3
zsteg/install Executable file
View file

@ -0,0 +1,3 @@
#!/bin/bash -e
gem install zsteg

3
zsteg/install-root-archlinux Executable file
View file

@ -0,0 +1,3 @@
#!/bin/bash -e
pacman -Syu --noconfirm --needed ruby

3
zsteg/install-root-debian Executable file
View file

@ -0,0 +1,3 @@
#!/bin/bash -e
apt-get install -y ruby