honggfuzz
honggfuzz copied to clipboard
Security oriented software fuzzer. Supports evolutionary, feedback-driven fuzzing based on code coverage (SW and HW based)
_This issue was automatically created by [Allstar](https://github.com/ossf/allstar/)._ **Security Policy Violation** Project is out of compliance with Binary Artifacts policy: binaries present in source code **Rule Description** Binary Artifacts are an...
Trying to figure out why some binaries didn't get past a certain point with `honggfuzz` but were fuzzed with `AFL++` I noticed that `honggfuzz` passed `/dev/fd/*` pointing to temporary files...
I compiled honggfuzz from source because not present in the debian packages. I did not read in the official honggfuzz that it requires binutils to work and I required to...
I have a target that I've compiled with `hfuzz-g++` that takes 4 files as input `target file1 file2 file3 file4`. I've tried passing these files using `-s` and even tried...
The flag works exactly once, for subsequent smaller crashes with the same signature, the crash file is never updated. See the following log: ``` Sz:512 Tm:53780us (i/b/h/e/p/c) New:0/0/1/0/0/0, Cur:0/0/0/0/0/0 Crash:...
Hello, The [latest patch](https://github.com/google/honggfuzz/blob/master/examples/bind/bind-9.17.6.patch) for Bind in the repository doesn't work. Bind now doesn't have the package, `libtool` as option. So when the [`configure`](https://github.com/google/honggfuzz/blob/master/examples/bind/bind-9.17.6.patch#L308) command is run it prints the...
Hi team, I'm using honggfuzz's Corpus Minimization mode to reduce the size of my test cases set on Ubuntu 18.04. It worked well, and does prevent me from analyzing every...
Hi I build d8 version 8.0.0 and and try an old poc that crash the d8 with `Trace/breakpoint trap (core dumped)` message, but when I use honggfuzz with the same...

Trying to fuzz simple test target. ```C #include #include #include #include #include #include extern HF_ITER(uint8_t** buf, size_t* len); void test(char* buf){ if (buf[0] == 'f') { if (buf[1] == 'o')...