diff options
author | Matt Johnston <matt@ucc.asn.au> | 2020-11-13 23:18:05 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2020-11-13 23:18:05 +0800 |
commit | 8ec9016585b8bfd026e408567bf246cdad6cee69 (patch) | |
tree | b1b6c9cfc089c6f26a02107b4f61c7aed6e53332 /Makefile.in | |
parent | 15ea6d1106c08deafc1a16788c03155c2efff524 (diff) |
Add server postauth fuzzer, wrap connect_remote()
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 113a0fb..5d73db4 100644 --- a/Makefile.in +++ b/Makefile.in @@ -269,7 +269,8 @@ lint: # list of fuzz targets FUZZ_TARGETS=fuzzer-preauth fuzzer-pubkey fuzzer-verify fuzzer-preauth_nomaths \ - fuzzer-kexdh fuzzer-kexecdh fuzzer-kexcurve25519 fuzzer-client fuzzer-client_nomaths + fuzzer-kexdh fuzzer-kexecdh fuzzer-kexcurve25519 fuzzer-client fuzzer-client_nomaths \ + fuzzer-postauth_nomaths FUZZER_OPTIONS = $(addsuffix .options, $(FUZZ_TARGETS)) FUZZ_OBJS = $(addprefix fuzz/,$(addsuffix .o,$(FUZZ_TARGETS))) \ @@ -294,7 +295,7 @@ $(FUZZ_TARGETS): $(FUZZ_OBJS) $(allobjs) $(LIBTOM_DEPS) # fuzzers that use the custom mutator - these expect a SSH network stream MUTATOR_FUZZERS=fuzzer-client fuzzer-client_nomaths \ - fuzzer-preauth fuzzer-preauth_nomaths + fuzzer-preauth fuzzer-preauth_nomaths fuzzer-postauth_nomaths $(MUTATOR_FUZZERS): allobjs += fuzz/fuzz-sshpacketmutator.o fuzzer-%.options: Makefile |