add quick tag to default port scan plugin

add quick tag to default port scan plugin
This commit is contained in:
gr4ysku11 2021-12-15 10:15:53 -08:00 committed by GitHub
parent 61f6650408
commit 411929cd11
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ class QuickTCPPortScan(PortScan):
self.name = 'Top TCP Ports'
self.description = 'Performs an Nmap scan of the top 1000 TCP ports.'
self.type = 'tcp'
self.tags = ['default', 'default-port-scan']
self.tags = ['default', 'default-port-scan', 'quick']
self.priority = 0
async def run(self, target):