summaryrefslogtreecommitdiff
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
commit91b1df1569e3a80be85071642356021eac25ad0d (patch)
treee847a2356b0c569ae9475a49e20ee82a12cb5db9 /Makefile.in
parent8ba488855c1009434613f2a46f4a79e4af7885e5 (diff)
downloaddropbear-91b1df1569e3a80be85071642356021eac25ad0d.tar.gz
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