From caaace403ac4f7a2939241b03f272430da0a8acf Mon Sep 17 00:00:00 2001 From: Mechiel Lukkien Date: Thu, 6 Mar 2025 11:15:25 +0100 Subject: [PATCH] Add package smtp as fuzzing target since its addition in previous commit The previous commit fixed an array out of bounds access that resulted in a panic on an smtpserver connection. The panic is recovered and marked as "unhandled panic" in metrics and the connection closed. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 8e04613..42c4212 100644 --- a/Makefile +++ b/Makefile @@ -78,6 +78,7 @@ fuzz: go test -fuzz . -parallel 1 -fuzztime 5m ./junk go test -fuzz FuzzParseRecord -fuzztime 5m ./mtasts go test -fuzz FuzzParsePolicy -fuzztime 5m ./mtasts + go test -fuzz . -fuzztime 5m ./smtp go test -fuzz . -parallel 1 -fuzztime 5m ./smtpserver go test -fuzz . -fuzztime 5m ./spf go test -fuzz FuzzParseRecord -fuzztime 5m ./tlsrpt