Skip to content

Latest commit

 

History

History
 
 

fuzz

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

Fuzzing

This folder contains a Cargo package for a fuzz target that can be used for fuzzing with american fuzzy lop. Fuzzing has found many rare bugs and unhandled edge cases that cause crashes and is invaluable for improving the reliability of minify-html.

Inputs

Initial inputs can be found in the in folder.

Building

cargo afl build

Running

cargo afl fuzz -i in -o out target/debug/minify-html-fuzz-target

Results

Inputs that cause a crash are found in the out/crashes folder.