Skip to content
Security oriented fuzzer with powerful analysis options. Supports evolutionary, feedback-driven fuzzing based on code coverage (software- and hardware-based)
Branch: master
Clone or download
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
android android: fix libcommon->libhfcommon references Jan 7, 2018
docs ALL: remove -p (pid), simplify the subproc state machine. NetBSD will… Jan 30, 2019
examples examples/bind: patch fix #2 Feb 20, 2019
hfuzz_cc hfuzz-cc: assume gcc-8/9 is used by default Mar 3, 2019
includes Includes/Libs: rename directories to the 'hf' prefix, so it doesn't c… Jan 5, 2018
libhfcommon hfuzz-cc: better way of looking for fsanitize=fuzzer Mar 1, 2019
libhfnetdriver hfnetdriver: lower some logging levels Feb 21, 2019
libhfuzz libhfnetdriver: set SO_SNDBUF Feb 21, 2019
linux hfuzz-cc: better way of looking for fsanitize=fuzzer Mar 1, 2019
mac netbsd/mac: use EINTR loop for wait Feb 19, 2019
netbsd netbsd/mac: use EINTR loop for wait Feb 19, 2019
posix posix: check wait events in a loop Feb 15, 2019
socketfuzzer Fix socketfuzzer test code for interactive mode Oct 17, 2018
third_party android: use ANDROID_API=26 by default, and use -D__ANDROID_API__=$AN… Dec 15, 2017
tools Grammar & typos May 6, 2016
.gitignore hfuzz: add links Jan 10, 2018
.gitmodules [Android] libunwind default to master Oct 17, 2016
CHANGELOG readme: release 1.8 Feb 18, 2019
CONTRIBUTING Added CONTRIBUTING Aug 20, 2015
COPYING Init Oct 14, 2010
Dockerfile fix Dockerfile Apr 8, 2018
Makefile create a signal thread to distribute SIGCHLD as SIGUSR1 Feb 14, 2019
README.md readme: release 1.8 Feb 18, 2019
arch.h Update copyright/authors headers Feb 27, 2018
cmdline.c cmdline: allow to use -na or -n all to use all cores Feb 26, 2019
cmdline.h cmdline: more work on envs Nov 20, 2018
display.c ALL: remove -p (pid), simplify the subproc state machine. NetBSD will… Jan 30, 2019
display.h Update copyright/authors headers Feb 27, 2018
fuzz.c subproc: allow to specify whether a thread should be joinable Feb 21, 2019
fuzz.h fuzz: don't wait for threads with pthread_join Feb 17, 2019
honggfuzz.c fix LOG msg Mar 2, 2019
honggfuzz.h readme: release 1.8 Feb 18, 2019
input.c input: don't ftruncate under macosx - it's expensive there Feb 19, 2019
input.h Update copyright/authors headers Feb 27, 2018
mangle.c mangle: remove resize as resizing is done by inflate/deflate Feb 20, 2019
mangle.h mangle: simplify printable/non-printable mangling logic Dec 31, 2018
report.c ALL: remove -p (pid), simplify the subproc state machine. NetBSD will… Jan 30, 2019
report.h Update copyright/authors headers Feb 27, 2018
sanitizers.c ALL: remove -p (pid), simplify the subproc state machine. NetBSD will… Jan 30, 2019
sanitizers.h sancov: remove, since it's old (clang-4), slower, and requires comple… Aug 23, 2018
screenshot-honggfuzz-1.png updated screenshot Jan 18, 2018
socketfuzzer.c support for multiple parallel honggfuzz processes in socketfuzzer mode Apr 14, 2018
socketfuzzer.h make indent depend Jan 21, 2018
subproc.c subproc: allow to specify whether a thread should be joinable Feb 21, 2019
subproc.h subproc: allow to specify whether a thread should be joinable Feb 21, 2019

README.md

honggfuzz

Description

A security oriented, feedback-driven, evolutionary, easy-to-use fuzzer with interesting analysis options. See USAGE for the description of command-line options.

  • It's multi-process and multi-threaded: no need to run multiple copies of your fuzzer, as honggfuzz can unlock potential of all your available CPU cores with a single supervising process. The file corpus is automatically shared and improved between the fuzzing threads and fuzzed processes.
  • It's blazingly fast when in the persistent fuzzing mode). A simple/empty LLVMFuzzerTestOneInput function can be tested with up to 1mo iterations per second on a relatively modern CPU (e.g. i7-6700K)
  • Has a solid track record of uncovered security bugs: the only (to the date) vulnerability in OpenSSL with the critical score mark was discovered by honggfuzz. See the Trophies paragraph for the summary of findings to the date
  • Uses low-level interfaces to monitor processes (e.g. ptrace under Linux and NetBSD). As opposed to other fuzzers, it will discover and report hijacked/ignored signals from crashes (intercepted and potentially hidden by a fuzzed program)
  • Easy-to-use, feed it a simple corpus directory (can even be empty) and it will work its way up expanding it utilizing feedback-based coverage metrics
  • Supports several (more than any other coverage-based feedback-driven fuzzer) hardware-based (CPU: branch/instruction counting, Intel BTS, Intel PT) and software-based feedback-driven fuzzing methods known from other fuzzers (libfuzzer, afl)
  • Works (at least) under GNU/Linux, FreeBSD, NetBSD, Mac OS X, Windows/CygWin and Android
  • Supports the persistent fuzzing mode (long-lived process calling a fuzzed API repeatedly) with libhfuzz/libhfuzz.a. More on that can be found here
  • It comes with the examples directory, consisting of real world fuzz setups for widely-used software (e.g. Apache and OpenSSL)


Code

Requirements

  • Linux - The BFD library (libbfd-dev) and libunwind (libunwind-dev/libunwind8-dev), clang-4.0 or higher for software-based coverage modes
  • FreeBSD - gmake, clang-3.6 or newer (clang-devel/4.0 suggested)
  • NetBSD - gmake, clang, capstone, libBlocksRuntime
  • Android - Android SDK/NDK. Also see this detailed doc on how to build and run it
  • Windows - CygWin
  • Darwin/OS X - Xcode 10.8+
  • if Clang/LLVM is used to compile honggfuzz - link it with the BlocksRuntime Library (libblocksruntime-dev)

Trophies

Honggfuzz has been used to find a few interesting security problems in major software packages; An incomplete list:

Projects utilizing Honggfuzz

Examples

The examples directory contains code demonstrating (among others) how to use honggfuzz to find bugs in the OpenSSL library and in the Apache HTTPD web server.

Other

This is NOT an official Google product

You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session.