Skip to content

Instantly share code, notes, and snippets.

@samueleresca
Last active November 17, 2022 22:23
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 samueleresca/aa9b6cd9b7e68f09edf6a9ce2d4454c7 to your computer and use it in GitHub Desktop.
Save samueleresca/aa9b6cd9b7e68f09edf6a9ce2d4454c7 to your computer and use it in GitHub Desktop.
// fuzz_target.cc
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
SystemUnderTest(Data, Size);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment