From 4e8a1da551db44e5865f6a1cc28e24fc2c2bdd0f Mon Sep 17 00:00:00 2001 From: Matt Johnston Date: Sun, 25 Oct 2020 22:52:36 +0800 Subject: Add first try at fuzzing custom mutator --- fuzz/fuzzer-client_mutator.c | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 fuzz/fuzzer-client_mutator.c (limited to 'fuzz/fuzzer-client_mutator.c') diff --git a/fuzz/fuzzer-client_mutator.c b/fuzz/fuzzer-client_mutator.c new file mode 100644 index 0000000..df57314 --- /dev/null +++ b/fuzz/fuzzer-client_mutator.c @@ -0,0 +1,8 @@ +#include "fuzz.h" + +#include "fuzz-sshpacketmutator.c" + +int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { + return fuzz_run_client(Data, Size, 0); +} + -- cgit v1.2.3