From 742d727802e119fc85df50d99bcec3b87d3cfa8c Mon Sep 17 00:00:00 2001 From: jbergner Date: Mon, 23 Jun 2025 18:54:30 +0200 Subject: [PATCH] =?UTF-8?q?Ports=20"143",=20"993",=20"1723"=20erg=C3=A4nzt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 176d30d..82e3c68 100644 --- a/main.go +++ b/main.go @@ -70,7 +70,7 @@ func main() { } } - portsTCP := []string{"135", "139", "445", "389", "636", "3268", "3269", "88", "3389", "3306", "27017", "5432", "25", "123", "5900"} + portsTCP := []string{"135", "139", "445", "389", "636", "3268", "3269", "88", "3389", "3306", "27017", "5432", "25", "123", "5900", "143", "993", "1723"} for _, port := range portsTCP { go startTCPListener(port) }