1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-04 13:49:03 +00:00

Update finger.nse in scripting.xml to match the latest version of the script.

Also take the example script out of a sect2 and put it directly in the
enclosing sect1 (the sect1 was empty except for the sect2).
This commit is contained in:
david
2008-11-04 22:47:17 +00:00
parent 854b3460b5
commit 14fc84bd49
2 changed files with 23 additions and 62 deletions

View File

@@ -17,5 +17,6 @@ portrule = shortport.port_or_service(79, "finger")
action = function(host, port)
local try = nmap.new_try()
return try(comm.exchange(host, port, "\r\n", {lines=100, proto=port.protocol, timeout=5000}))
return try(comm.exchange(host, port, "\r\n",
{lines=100, proto=port.protocol, timeout=5000}))
end