Skip to content

Instantly share code, notes, and snippets.

@samueleresca
Created November 18, 2022 21:47
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/dbb5828aa38dd9d2de6308822c3194b7 to your computer and use it in GitHub Desktop.
Save samueleresca/dbb5828aa38dd9d2de6308822c3194b7 to your computer and use it in GitHub Desktop.
// fuzz_target_http.cc
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
// Send HTTP request to the container
SendFuzzedPayload(Data, Size);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment