examples/openssl: make.sh
1 file changed
tree: 8bd3807ca7e99c7376484d5e453883050b7209ae
- android/
- docs/
- examples/
- hfuzz_cc/
- libhfuzz/
- linux/
- mac/
- posix/
- third_party/
- tools/
- .gitignore
- .gitmodules
- arch.h
- CHANGELOG
- cmdline.c
- cmdline.h
- common.h
- CONTRIBUTING
- COPYING
- display.c
- display.h
- files.c
- files.h
- fuzz.c
- fuzz.h
- honggfuzz.c
- log.c
- log.h
- Makefile
- mangle.c
- mangle.h
- README.md
- report.c
- report.h
- sancov.c
- sancov.h
- sanitizers.c
- sanitizers.h
- subproc.c
- subproc.h
- util.c
- util.h
README.md
honggfuzz
Description
A security oriented, feedback-driven, evolutionary, easy-to-use fuzzer with interesting analysis options. See USAGE for details
- Supports several hardware-based (CPU: branch/instruction counting, Intel BTS, Intel PT) and software-based feedback-driven fuzzing methods
- It works (at least) under GNU/Linux, FreeBSD, Mac OS X, Windows/CygWin and Android
- Supports persistent modes of fuzzing (long-lived process calling a fuzzed API repeatedly) with libhfuzz/libhfuzz.a. More on that here
- Can fuzz remote/standalone long-lasting processes (e.g. network servers like Apache's httpd and ISC's bind)
Code
- Latest stable version: 0.9, or simply use the master branch
- Changelog
Requirements
- Linux - The BFD library (libbfd-dev) and libunwind (libunwind-dev/libunwind8-dev)
- FreeBSD - gmake, clang-3.6 or newer
- 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 - the BlocksRuntime Library (libblocksruntime-dev)
Trophies
The tool has been used to find a few interesting security problems in major software packages; Examples:
Examples
The examples directory contains code demonstrating (among others) how to use honggfuzz to find bugs in the OpenSSL library and in the Apache web server.
Other
This is NOT an official Google product.