Skip to content

Instantly share code, notes, and snippets.

@adetaylor
Created March 4, 2022 21:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adetaylor/06b119acb7936f69a2044be9efdef002 to your computer and use it in GitHub Desktop.
Save adetaylor/06b119acb7936f69a2044be9efdef002 to your computer and use it in GitHub Desktop.
Blank fuzzer
#![no_main]
use libfuzzer_sys::fuzz_target;
use libfuzzer_sys::arbitrary;
#[derive(arbitrary::Arbitrary,Debug,Clone)]
struct Inputs {
// Fuzzer inputs will go here
}
fuzz_target!(|input: Inputs| {
// Fuzzer will go here
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment