added honggfuzz

This commit is contained in:
Yan 2016-04-04 15:15:46 -07:00
parent 6c3db8be32
commit 9dc5dbb8c1
3 changed files with 11 additions and 0 deletions

View file

@ -21,6 +21,7 @@ Installers for the following tools are included:
| binary | [elfparser](http://www.elfparser.com/) | Quickly determine the capabilities of an ELF binary through static analysis. | <!--tool--><!--test-->
| binary | [evilize](http://www.mathstat.dal.ca/~selinger/md5collision/) | Tool to create MD5 colliding binaries | <!--tool--><!--test-->
| binary | [gdb](http://www.gnu.org/software/gdb/) | Up-to-date gdb with python2 bindings. | <!--tool--><!--failing-->
| binary | [hongfuzz](https://github.com/google/honggfuzz) | A general-purpose, easy-to-use fuzzer with interesting analysis options. | <!--tool--><!--test-->
| binary | [panda](https://github.com/moyix/panda) | Platform for Architecture-Neutral Dynamic Analysis. | <!--tool--><!--no-test-->
| binary | [pathgrind](https://github.com/codelion/pathgrind) | Path-based, symbolically-assisted fuzzer. | <!--tool--><!--test-->
| binary | [peda](https://github.com/longld/peda) | Enhanced environment for gdb. | <!--tool--><!--test-->

7
honggfuzz/install Executable file
View file

@ -0,0 +1,7 @@
#!/bin/bash -e
[ -e honggfuzz ] || git clone --depth 1 https://github.com/google/honggfuzz
cd honggfuzz
make -j
mkdir -p ../bin
cp honggfuzz ../bin

3
honggfuzz/install-root Executable file
View file

@ -0,0 +1,3 @@
#!/bin/bash -e
apt-get install libbfd-dev libunwind8-dev