From 396f68a325a5a8f1a9379d314979dbf85a9c95c7 Mon Sep 17 00:00:00 2001 From: Olivier Cervello Date: Sun, 10 Nov 2024 16:14:42 -0500 Subject: [PATCH] fix: nmap defaults --- secator/tasks/nmap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/secator/tasks/nmap.py b/secator/tasks/nmap.py index 1bc42882..8819fe5b 100644 --- a/secator/tasks/nmap.py +++ b/secator/tasks/nmap.py @@ -30,7 +30,7 @@ class nmap(VulnMulti): opt_prefix = '--' output_types = [Port, Vulnerability, Exploit] opts = { - PORTS: {'type': str, 'short': 'p', 'default': 'top-1000', 'help': 'Ports to scan'}, + PORTS: {'type': str, 'short': 'p', 'help': 'Ports to scan'}, TOP_PORTS: {'type': int, 'short': 'tp', 'help': 'Top ports to scan [full, 100, 1000]'}, SCRIPT: {'type': str, 'default': 'vulners', 'help': 'NSE scripts'}, 'skip_host_discovery': {'is_flag': True, 'short': 'Pn', 'default': False, 'help': 'Skip host discovery (no ping)'},