1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-06 04:31:29 +00:00

In r23085 (part of the silent require change), the require for ssh2 was accidentally deleted and that broke the script. Restored.

This commit is contained in:
fyodor
2011-07-07 08:15:08 +00:00
parent 04b4baa747
commit c2ff573967

View File

@@ -58,6 +58,7 @@ categories = {"safe", "discovery"}
require "shortport"
require "stdnse"
stdnse.silent_require "openssl"
stdnse.silent_require "ssh2"
portrule = shortport.port_or_service(22, "ssh")