mirror of
https://github.com/zardus/ctf-tools
synced 2024-11-10 16:34:13 +00:00
added honggfuzz
This commit is contained in:
parent
6c3db8be32
commit
9dc5dbb8c1
3 changed files with 11 additions and 0 deletions
|
@ -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
7
honggfuzz/install
Executable 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
3
honggfuzz/install-root
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash -e
|
||||
|
||||
apt-get install libbfd-dev libunwind8-dev
|
Loading…
Reference in a new issue