mirror of
https://github.com/nmap/nmap.git
synced 2026-01-14 10:29:03 +00:00
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).
23 lines
507 B
Lua
23 lines
507 B
Lua
id = "Finger Results"
|
|
description = [[
|
|
Attempts to get a list of usernames via the finger service.
|
|
]]
|
|
|
|
author = "Eddie Bell <ejlbell@gmail.com>"
|
|
|
|
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
|
|
|
categories = {"default", "discovery"}
|
|
|
|
require "comm"
|
|
require "shortport"
|
|
|
|
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}))
|
|
end
|