Merge pull request #133 from boogy/master

New tools: Manticore
This commit is contained in:
Yan 2017-05-01 15:38:25 -07:00 committed by GitHub
commit d15a0a107f
4 changed files with 13 additions and 0 deletions

View file

@ -50,6 +50,7 @@ Installers for the following tools are included:
| binary | [virtualsocket](https://github.com/antoniobianchi333/virtualsocket) | A nice library to interact with binaries. | <!--tool--><!--test-->
| binary | [wcc](https://github.com/endrazine/wcc) | The Witchcraft Compiler Collection is a collection of compilation tools to perform binary black magic on the GNU/Linux and other POSIX platforms. | <!--tool--><!--no-test-->
| binary | [xrop](https://github.com/acama/xrop) | Gadget finder. | <!--tool--><!--failing-->
| binary | [manticore](https://github.com/trailofbits/manticore) | Manticore is a prototyping tool for dynamic binary analysis, with support for symbolic execution, taint analysis, and binary instrumentation. | <!--tool--><!--no-test-->
| forensics | [binwalk](https://github.com/devttys0/binwalk.git) | Firmware (and arbitrary file) analysis tool. | <!--tool--><!--test-->
| forensics | [dislocker](http://www.hsc.fr/ressources/outils/dislocker/) | Tool for reading Bitlocker encrypted partitions. | <!--tool--><!--test-->
| forensics | [exetractor](https://github.com/kholia/exetractor-clone) | Unpacker for packed Python executables. Supports PyInstaller and py2exe. | <!--tool--><!--test-->

4
manticore/install Normal file
View file

@ -0,0 +1,4 @@
#!/bin/bash -ex
git clone --depth 1 https://github.com/trailofbits/manticore.git && cd manticore
ctf-tools-pip install --no-binary capstone .

View file

@ -0,0 +1,5 @@
#!/bin/bash -ex
set -eu -o pipefail
apt-get -y install z3

3
manticore/uninstall Normal file
View file

@ -0,0 +1,3 @@
#!/bin/bash -ex
ctf-tools-pip uninstall -y manticore || true