Update ssh.py

Added "safe" tag.
This commit is contained in:
Tib3rius 2021-08-23 20:25:19 -04:00
parent 9a66c83575
commit 8d4b1319d9
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ class NmapSSH(ServiceScan):
def __init__(self): def __init__(self):
super().__init__() super().__init__()
self.name = "Nmap SSH" self.name = "Nmap SSH"
self.tags = ['default', 'ssh'] self.tags = ['default', 'safe', 'ssh']
def configure(self): def configure(self):
self.match_service_name('^ssh') self.match_service_name('^ssh')