From c5adbdb551fa181d4bca35d807a319fcdd46568b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BD=B1=E8=88=9E=E8=80=85?= Date: Tue, 14 Nov 2023 18:33:26 +0800 Subject: [PATCH] Update --- common/ParsePort.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/ParsePort.go b/common/ParsePort.go index e5babeb..4ccac9e 100644 --- a/common/ParsePort.go +++ b/common/ParsePort.go @@ -17,6 +17,8 @@ func ParsePort(ports string) (scanPorts []int) { } if PortGroup[port] != "" { port = PortGroup[port] + scanPorts = append(scanPorts, ParsePort(port)...) + continue } upper := port if strings.Contains(port, "-") {