From 3fea6ac30cf5b2c48092a3b63ba93c3de8953d88 Mon Sep 17 00:00:00 2001 From: luke-goddard <56234834+luke-goddard@users.noreply.github.com> Date: Fri, 5 Jul 2024 16:01:07 +0100 Subject: [PATCH] Remove Anon Login, as FTP code never checks for anon login --- pkg/plugins/types.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/plugins/types.go b/pkg/plugins/types.go index 0cac2e9..f3c0fb1 100644 --- a/pkg/plugins/types.go +++ b/pkg/plugins/types.go @@ -405,7 +405,6 @@ func (e ServiceRedis) Type() string { return ProtoRedis } type ServiceFTP struct { Banner string `json:"banner"` - AnonymousLogin bool `json:"anonymousLogin"` } func (e ServiceFTP) Type() string { return ProtoFTP }