From 8d4b1319d9efaf13c6f1b7d5e10b158a8e027b51 Mon Sep 17 00:00:00 2001 From: Tib3rius <48113936+Tib3rius@users.noreply.github.com> Date: Mon, 23 Aug 2021 20:25:19 -0400 Subject: [PATCH] Update ssh.py Added "safe" tag. --- plugins/ssh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/ssh.py b/plugins/ssh.py index bb75718..8c95956 100644 --- a/plugins/ssh.py +++ b/plugins/ssh.py @@ -5,7 +5,7 @@ class NmapSSH(ServiceScan): def __init__(self): super().__init__() self.name = "Nmap SSH" - self.tags = ['default', 'ssh'] + self.tags = ['default', 'safe', 'ssh'] def configure(self): self.match_service_name('^ssh')