From 3beac0c854177c75fda8d593b9b3ffa92e72a677 Mon Sep 17 00:00:00 2001 From: devin Date: Thu, 14 Aug 2014 03:14:50 +0000 Subject: [PATCH] Fixed categories on ssh-auth-methods --- scripts/ssh-auth-methods.nse | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/ssh-auth-methods.nse b/scripts/ssh-auth-methods.nse index 23e4bf631..802905a5c 100644 --- a/scripts/ssh-auth-methods.nse +++ b/scripts/ssh-auth-methods.nse @@ -23,6 +23,8 @@ license = "Same as Nmap--See http://nmap.org/book/man-legal.html" local username = stdnse.get_script_args("ssh.user") or stdnse.generate_random_string(5) portrule = shortport.port_or_service(22, 'ssh') +categories = {"safe"} + action = function (host, port) local result = stdnse.output_table()