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, "-") {