JQF is a feedback-directed structured fuzz testing platform for Java. JQF is built on top of junit-quickcheck, which itself lets you write Quickcheck-like generators and properties in a Junit-style test class. JQF enables better input generation using coverage-guided fuzzing algorithms.
JQF has been successful in discovering a number of bugs in widely used open-source software such as OpenJDK, Apache Maven and the Google Closure Compiler.
JQF is a modular framework, supporting the following pluggable fuzzing front-ends called guidances:
- Binary fuzzing with AFL (tutorial)
- Semantic fuzzing with Zest (tutorial 1) (tutorial 2)
- Complexity fuzzing with PerfFuzz
Binary fuzzing tools like AFL and libFuzzer treat the input as a sequence of bytes. If the test program expects highly structured inputs, such as XML documents or JavaScript programs, then mutating byte-arrays often results in syntactically invalid inputs; the core of the test program remains untested.
Structured fuzzing tools like JQF and others perform mutations in the space of syntactically valid inputs, by leveraging domain-specific knowledge of the input format. Here is a nice article on structure-aware fuzzing of C++ programs using libFuzzer.
Structured fuzzing tools need a way to understand the input format. Some tools use declarative specifications of the input format such as context-free grammars or protocol buffers. JQF uses an imperative approach for specifying the space of inputs: arbitrary generator programs whose job is to generate a single random input.
A Generator<T>
provides a method for producing random instances of type T
. For example, a generator for type Calendar
returns randomly-generated Calendar
objects. One can easily write generators for more complex types, such as XML documents, JavaScript programs, JVM class files, SQL queries, HTTP requests, and many more -- this is generator-based structured fuzzing. However, simply sampling random inputs of type T
is not usually very effective, since the generator does not know if the inputs it is producing are any good.
JQF uses code-coverage feedback to bias the pseudo-random source that backs your generator, thereby encouraging the production of inputs that are both syntactically valid and find bugs deep in your test program. Once you have a generator for type T
, you can fuzz any method that takes an instance of type T
in its argument list. JQF automatically converts any QuickCheck-style random-input generator of type T
into a feedback-directed fuzzer on the domain of T
.
JQF supports the Zest algorithm, which guides generator-based fuzzing towards producing inputs that are also semantically valid (i.e., structured inputs that satisfy specific invariants). Semantic invariants can be specified in the test driver simply using JUnit's Assume
API. An assumption violation corresponds to semantic invalidity.
- Zest 101: A basic tutorial for fuzzing a standalone toy program using command-line scripts. Walks through the process of writing a test driver and structured input generator for
Calendar
objects. - Fuzzing a compiler with Zest: A tutorial for fuzzing a non-trivial program -- the Google Closure Compiler -- using a generator for JavaScript programs. This tutorial makes use of the JQF Maven plugin.
- Fuzzing with AFL: A tutorial for fuzzing a Java program that parses binary data, such as PNG image files, using the AFL binary fuzzing engine.
The JQF wiki contains lots more documentation including:
JQF also publishes its API docs.
We want your feedback! (haha, get it? get it?)
If you've found a bug in JQF or are having trouble getting JQF to work, please open an issue on the issue tracker. You can also use this platform to post feature requests.
If it's some sort of fuzzing emergency you can always send an email to the main developer: Rohan Padhye.