Skip to content

Latest commit

 

History

History
 
 

fuzzer

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

OPA Fuzzer

How To Run

Install the fuzzer:

make deps

Build the fuzzer package. The fuzzer package includes the code to run and the corpus:

make build

Run the fuzzer:

make fuzz

The last command will start the fuzzer and output the results to the workdir.

Note: The fuzzer will run in an infinite loop testing until manually interrupted!

See go-fuzz/README.md for details on the fuzzer output. Pay attention to the restarts output field. This value should be around 1/10,000. If it's higher than this and the crashers field is greater than zero, check the output directory for crash output.

Easy Mode

make all

Starts the unbounded fuzzing process.