From d718e20d3338c2c160068d5f23c62bdc4636496c Mon Sep 17 00:00:00 2001 From: Silas Cutler Date: Tue, 24 Nov 2020 10:44:26 -0500 Subject: [PATCH] Added continue to prevent error --- cmd/jarmscan/main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/jarmscan/main.go b/cmd/jarmscan/main.go index 6ef5793..6f75852 100644 --- a/cmd/jarmscan/main.go +++ b/cmd/jarmscan/main.go @@ -35,6 +35,7 @@ func fingerprint(host string, port int) (string, error) { ans, err := jarm.ParseServerHello(buff, probe) if err != nil { results = append(results, "") + continue } results = append(results, ans)