mirror of
https://github.com/zardus/ctf-tools
synced 2024-11-10 08:24:12 +00:00
commit
c2e3b26de5
8 changed files with 27 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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
9
veles/install
Executable 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
3
veles/install-root-archlinux
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash -e
|
||||
|
||||
pacman -Syu --noconfirm --needed cmake zlib qt5-base
|
3
veles/install-root-debian
Executable file
3
veles/install-root-debian
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash -e
|
||||
|
||||
apt-get install -y cmake zlib zlib-dev qtbase5 qtbase5-dev
|
3
zsteg/install
Executable file
3
zsteg/install
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash -e
|
||||
|
||||
gem install zsteg
|
3
zsteg/install-root-archlinux
Executable file
3
zsteg/install-root-archlinux
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash -e
|
||||
|
||||
pacman -Syu --noconfirm --needed ruby
|
3
zsteg/install-root-debian
Executable file
3
zsteg/install-root-debian
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash -e
|
||||
|
||||
apt-get install -y ruby
|
Loading…
Reference in a new issue