Change default scanning ports

Signed-off-by: David J. Allen <davidallendj@gmail.com>
This commit is contained in:
David Allen 2023-09-14 14:37:10 -06:00
parent 3607ad761c
commit ac9556a526
2 changed files with 2 additions and 2 deletions

View file

@ -92,5 +92,5 @@ func ScanForAssets(hosts []string, ports []int, threads int, timeout int) []BMCP
}
func GetDefaultPorts() []int {
return []int{SSH_PORT, HTTPS_PORT, IPMI_PORT}
return []int{HTTPS_PORT, IPMI_PORT}
}