diff --git a/README.md b/README.md index ecee1a2..c477d93 100644 --- a/README.md +++ b/README.md @@ -18,20 +18,21 @@ Installers for the following tools are included: | binary | [elfkickers](http://www.muppetlabs.com/~breadbox/software/elfkickers.html) | A set of utilities for working with ELF files. | | binary | [evilize](http://www.mathstat.dal.ca/~selinger/md5collision/) | Tool to create MD5 colliding binaries | | binary | [gdb](http://www.gnu.org/software/gdb/) | Up-to-date gdb with python2 bindings. | +| binary | [pathgrind](https://github.com/codelion/pathgrind) | Path-based, symbolically-assisted fuzzer. | | binary | [peda](https://github.com/longld/peda) | Enhanced environment for gdb. | | binary | [preeny](https://github.com/zardus/preeny) | A collection of helpful preloads (compiled for many architectures!). | -| binary | [villoc](https://github.com/wapiflapi/villoc) | Visualization of heap operations. | -| binary | [qemu](http://qemu.org) | Latest version of qemu! | -| binary | [pathgrind](https://github.com/codelion/pathgrind) | Path-based, symbolically-assisted fuzzer. | -| binary | [virtualsocket](https://github.com/antoniobianchi333/virtualsocket) | A nice library to interact with binaries. | | binary | [pwntools](https://github.com/Gallopsled/pwntools) | Useful CTF utilities. | | binary | [python-pin](https://github.com/blankwall/Python_Pin) | Python bindings for pin. | -| binary | [radare2](http://www.radare.org/) | Some crazy thing crowell likes. | -| binary | [shellnoob](https://github.com/reyammer/shellnoob) | Shellcode writing helper. | -| binary | [taintgrind](https://github.com/wmkhoo/taintgrind) | A valgrind taint analysis tool. | +| binary | [qemu](http://qemu.org) | Latest version of qemu! | | binary | [qira](http://qira.me) | Parallel, timeless debugger. | -| binary | [xrop](https://github.com/acama/xrop) | Gadget finder. | +| binary | [radare2](http://www.radare.org/) | Some crazy thing crowell likes. | | binary | [rp++](https://github.com/0vercl0k/rp) | Another gadget finder. | +| binary | [shellnoob](https://github.com/reyammer/shellnoob) | Shellcode writing helper. | +| binary | [snowman](https://github.com/yegord/snowman) | Cross-architecture decompiler. | +| binary | [taintgrind](https://github.com/wmkhoo/taintgrind) | A valgrind taint analysis tool. | +| binary | [villoc](https://github.com/wapiflapi/villoc) | Visualization of heap operations. | +| binary | [virtualsocket](https://github.com/antoniobianchi333/virtualsocket) | A nice library to interact with binaries. | +| binary | [xrop](https://github.com/acama/xrop) | Gadget finder. | | forensics | [binwalk](https://github.com/devttys0/binwalk.git) | Firmware (and arbitrary file) analysis tool. | | forensics | [dislocker](http://www.hsc.fr/ressources/outils/dislocker/) | Tool for reading Bitlocker encrypted partitions. | | forensics | [exetractor](https://github.com/kholia/exetractor-clone) | Unpacker for packed Python executables. Supports PyInstaller and py2exe. | diff --git a/snowman/install b/snowman/install new file mode 100755 index 0000000..4a90f55 --- /dev/null +++ b/snowman/install @@ -0,0 +1,14 @@ +#!/bin/bash -e + +INST_DIR=$PWD + +#[ -e snowman ] || git clone --depth 1 https://github.com/yegord/snowman +[ -e v1.0.tar.gz ] || wget https://github.com/nihilus/snowman/archive/v1.0.tar.gz +tar xvzf v1.0.tar.gz +cd snowman-1.0 +rm -rf build +mkdir build +cd build +cmake -D CMAKE_INSTALL_PREFIX=$INST_DIR ../src +cmake --build . +cmake --build . --target install diff --git a/snowman/install-root b/snowman/install-root new file mode 100755 index 0000000..90a3e8b --- /dev/null +++ b/snowman/install-root @@ -0,0 +1,3 @@ +#!/bin/bash + +apt-get -y install libboost-dev cmake libqt4-dev