INTRODUCTION

This document describes the honggfuzz project.

OBJECTIVE

Honggfuzz is a general-purpose fuzzing tool. Given an input corpus files, honggfuzz modifies input to a test program and utilize the ptrace() API/POSIX signal interface to detect and log crashes. It can also use software or hardware-based code coverage techniques to produce more and more interesting inputs

FEATURES

  • Easy setup: No complicated configuration files or setup necessary -- honggfuzz can be run directly from the command line.
  • Fast: Multiple threads can run simultaneously for more efficient fuzzing.
  • Powerful analysis capabilities: honggfuzz will use the most powerful process state analysis (e.g. ptrace) interface under a given OS.
  • Powerful code coverage techniques Uses hardware- and software- based code coverage techniques to produce more interesting inputs to the fuzzed process

REQUIREMENTS

  • A POSIX compliant operating system (See the compatibility list for more) for static and ASAN code-coverage (SANCOV) modes

  • GNU/Linux with modern kernel (e.g. v4.0) for hardware-based code coveragfe guided fuzzing

  • A corpus of input files. Honggfuzz expects a set of files to use and modify as input to the application you're fuzzing. How you get or create these files is up to you, but you might be interested in the following sources:

    • Image formats: Tavis Ormandy's Image Testuite has been effective at finding vulnerabilities in various graphics libraries.
    • PDF: Adobe provides some test PDF files.

Compatibility list

It should work under the following operating systems:

OSStatusNotes
GNU/LinuxWorksptrace() API (x86, x86-64 disassembly support)
FreeBSDWorksPOSIX signal interface
Mac OS XWorksPOSIX signal interface/Mac OS X crash reports (x86-64/x86 disassembly support)
MS WindowsWorksPOSIX signal interface via CygWin
Other UnicesDepends*POSIX signal interface

*) It might work provided that a given operating system implements wait4() call

USAGE

Usage: ./honggfuzz [options] -- path_to_command [args]
Options:
 --help|-h
	Help plz..
 --input|-f VALUE
	Path to the file corpus (file or a directory)
 --nullify_stdio|-q
	Null-ify children's stdin, stdout, stderr; make them quiet
 --stdin_input|-s
	Provide fuzzing input on STDIN, instead of ___FILE___
 --save_all|-u
	Save all test-cases (not only the unique ones) by appending the current time-stamp to the filenames
 --logfile|-l VALUE
	Log file
 --verbose|-v
	Disable ANSI console; use simple log output
 --verifier|-V
	Enable crashes verifier
 --debug_level|-d VALUE
	Debug level (0 - FATAL ... 4 - DEBUG), (default: '3' [INFO])
 --extension|-e VALUE
	Input file extension (e.g. 'swf'), (default: 'fuzz')
 --workspace|-W VALUE
	Workspace directory to save crashes & runtime files (default: '.')
 --flip_rate|-r VALUE
	Maximal flip rate, (default: '0.001')
 --wordlist|-w VALUE
	Wordlist file (tokens delimited by NUL-bytes)
 --stackhash_bl|-B VALUE
	Stackhashes blacklist file (one entry per line)
 --mutate_cmd|-c VALUE
	External command modifying the input corpus of files, instead of -r/-m parameters
 --timeout|-t VALUE
	Timeout in seconds (default: '10')
 --threads|-n VALUE
	Number of concurrent fuzzing threads (default: '2')
 --iterations|-N VALUE
	Number of fuzzing iterations (default: '0' [no limit])
 --rlimit_as VALUE
	Per process memory limit in MiB (default: '0' [no limit])
 --report|-R VALUE
	Write report to this file (default: 'HONGGFUZZ.REPORT.TXT')
 --max_file_size|-F VALUE
	Maximal size of files processed by the fuzzer in bytes (default: '1048576')
 --clear_env
	Clear all environment variables before executing the binary
 --env|-E VALUE
	Pass this environment variable, can be used multiple times
 --sancov|-C
	Enable sanitizer coverage feedback
 --linux_pid|-p VALUE
	Attach to a pid (and its thread group)
 --linux_file_pid|-P VALUE
	Attach to pid (and its thread group) read from file
 --linux_addr_low_limit VALUE
	Address limit (from si.si_addr) below which crashes are not reported, (default: '0')
 --linux_keep_aslr
	Don't disable ASLR randomization, might be useful with MSAN
 --linux_report_msan_umrs
	Report MSAN's UMRS (uninitialized memory access)
 --linux_perf_ignore_above VALUE
	Ignore perf events which report IPs above this address
 --linux_perf_instr
	Use PERF_COUNT_HW_INSTRUCTIONS perf
 --linux_perf_branch
	Use PERF_COUNT_HW_BRANCH_INSTRUCTIONS perf
 --linux_perf_bts_block
	Use Intel BTS to count unique blocks
 --linux_perf_bts_edge
	Use Intel BTS to count unique edges
 --linux_perf_ipt_block
	Use Intel Processor Trace to count unique blocks
 --linux_perf_custom
	Custom counter (see the interceptor/ directory for examples)

Examples:
 Run the binary over a mutated file chosen from the directory
  honggfuzz -f input_dir -- /usr/bin/tiffinfo -D ___FILE___
 As above, provide input over STDIN:
  honggfuzz -f input_dir -s -- /usr/bin/djpeg
 Use SANCOV to maximize code coverage:
  honggfuzz -f input_dir -C -- /usr/bin/tiffinfo -D ___FILE___
 Run the binary over a dynamic file, maximize total no. of instructions:
  honggfuzz --linux_perf_instr -- /usr/bin/tiffinfo -D ___FILE___
 Run the binary over a dynamic file, maximize total no. of branches:
  honggfuzz --linux_perf_branch -- /usr/bin/tiffinfo -D ___FILE___
 Run the binary over a dynamic file, maximize unique code blocks (coverage):
  honggfuzz --linux_perf_ip -- /usr/bin/tiffinfo -D ___FILE___
 Run the binary over a dynamic file, maximize unique branches (edges):
  honggfuzz --linux_perf_ip_addr -- /usr/bin/tiffinfo -D ___FILE___
 Run the binary over a dynamic file, maximize custom counters (experimental):
  honggfuzz --linux_perf_custom -- /usr/bin/tiffinfo -D ___FILE___

This document explains how to use an external command to create fuzzing input.

OUTPUT FILES

ModeOutput file
Unique mode (-u)SIGSEGV.PC.0x7ffff78c8f70.CODE.1.ADDR.0x6c9000.INSTR.mov_``[rdi+0x10],_r9.ttf
Non-unique modeSIGSEGV.PC.0x8056ad7.CODE.1.ADDR.0x30333037.INSTR.movsx_eax,_``[eax].TIME.2010-06-07.02.25.04.PID.10097.ttf
POSIX signal interfaceSIGSEGV.22758.2010-07-01.17.24.41.tif

Description

  • SIGSEGV,SIGILL,SIGBUS,SIGABRT,SIGFPE - Description of the signal which terminated the process (when using ptrace() API, it's a signal which was delivered to the process, even if silently discarded)
  • PC.0x8056ad7 - Program Counter (PC) value (ptrace() API only), for x86 it's a value of the EIP register (RIP for x86-64)
  • CODE.1 - Value of the siginfo_t.si_code field (see man 2 signaction for more details), valid for some signals (e.g. SIGSEGV) only
  • ADDR.0x30333037 - Value of the siginfo_t.si_addr (see man 2 signaction for more details) (most likely meaningless for SIGABRT)
  • INSTR.movsx_eax,_``[eax] - Disassembled instruction which was found under the last known PC (Program Counter) (x86, x86-64 architectures only, meaningless for SIGABRT)
  • TIME.2010-06-07.02.25.04 - Local time when the signal was delivered
  • PID.10097 - Fuzzing process' id (PID) (See AttachingToPid for more)

FAQ

  • Q: Why the name honggfuzz?

  • A: The term honggfuzz was coined during a major and memorable event in the city of Zurich, where a Welsh security celebrity tried to reach Höngg in a cab while singing Another one bites the dust.

  • Q: Why do you prefer the ptrace() API to the POSIX signal interface?

  • A: The ptrace() API is more flexible when it comes to analyzing a process' crash. wait3/4() syscalls are only able to determine the type of signal which crashed an application and limited resource usage information (see man wait4).

  • Q: Why isn't there any support for the ptrace() API when compiling under FreeBSD or Mac OS X operating systems?

  • A: These operating systems lack some specific ptrace() operations, including PT_GETREGS (Mac OS X) and PT_GETSIGINFO, both of which honggfuzz depends on. If you have any ideas on how to get around this limitation, send us an email or patch.

LICENSE

This project is licensed under the Apache License, Version 2.0

CREDITS

  • Thanks to [taviso@google.com Tavis Ormandy] for many valuable ideas used in the course of this project's design and implementation phases
  • Thanks to my 1337 friends for all sorts of support and distraction :) - LiquidK, lcamtuf, novocainated, asiraP, ScaryBeasts, redpig, jln