summaryrefslogtreecommitdiffhomepage
path: root/Makefile.in
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2020-11-13 23:18:05 +0800
committerMatt Johnston <matt@ucc.asn.au>2020-11-13 23:18:05 +0800
commit8ec9016585b8bfd026e408567bf246cdad6cee69 (patch)
treeb1b6c9cfc089c6f26a02107b4f61c7aed6e53332 /Makefile.in
parent15ea6d1106c08deafc1a16788c03155c2efff524 (diff)
Add server postauth fuzzer, wrap connect_remote()
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in5
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