From 98281955339604825488a2c7e1c4f83efc213ea3 Mon Sep 17 00:00:00 2001 From: "David J. Allen" Date: Mon, 13 May 2024 15:27:21 -0600 Subject: [PATCH] Removed the IPMI port from GetDefaultPorts --- internal/scan.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/scan.go b/internal/scan.go index 4ff6fc4..56b064a 100644 --- a/internal/scan.go +++ b/internal/scan.go @@ -160,5 +160,5 @@ func ScanForAssets(hosts []string, ports []int, threads int, timeout int, disabl } func GetDefaultPorts() []int { - return []int{HTTPS_PORT, IPMI_PORT} + return []int{HTTPS_PORT} }