mirror of
https://github.com/nmap/nmap.git
synced 2025-12-09 14:11:29 +00:00
Mostly found with:
for i in nselib/*.lua scripts/*.nse; do
echo $(perl -lne 'BEGIN{$a=$p=0}next unless $_;/^(\s*)/;' \
-e '$l=length$1;next if$l==$p;$a+=(abs($l-$p)-$a)/$.;' \
-e '$p=$l;END{print$a}' $i) $i
done | sort -nr
And indented with: https://gist.github.com/bonsaiviking/8845871
whois-ip.nse was particularly mangled (probably my fault due to using
vim's built-in indentation script, but it could be structured better)
54 lines
1.4 KiB
Lua
54 lines
1.4 KiB
Lua
local comm = require "comm"
|
|
local nmap = require "nmap"
|
|
local shortport = require "shortport"
|
|
local string = require "string"
|
|
|
|
description = [[
|
|
Detects the Skype version 2 service.
|
|
]]
|
|
|
|
---
|
|
-- @output
|
|
-- PORT STATE SERVICE VERSION
|
|
-- 80/tcp open skype2 Skype
|
|
|
|
author = "Brandon Enright"
|
|
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
|
categories = {"version"}
|
|
|
|
|
|
portrule = function(host, port)
|
|
return (port.number == 80 or port.number == 443 or
|
|
port.service == nil or port.service == "" or
|
|
port.service == "unknown")
|
|
and port.protocol == "tcp" and port.state == "open"
|
|
and port.version.name_confidence < 10
|
|
and not(shortport.port_is_excluded(port.number,port.protocol))
|
|
end
|
|
|
|
action = function(host, port)
|
|
local status, result = comm.exchange(host, port,
|
|
"GET / HTTP/1.0\r\n\r\n", {bytes=26, proto=port.protocol})
|
|
if (not status) then
|
|
return
|
|
end
|
|
if (result ~= "HTTP/1.0 404 Not Found\r\n\r\n") then
|
|
return
|
|
end
|
|
-- So far so good, now see if we get random data for another request
|
|
status, result = comm.exchange(host, port,
|
|
"random data\r\n\r\n", {bytes=15, proto=port.protocol})
|
|
|
|
if (not status) then
|
|
return
|
|
end
|
|
if string.match(result, "[^%s!-~].*[^%s!-~].*[^%s!-~]") then
|
|
-- Detected
|
|
port.version.name = "skype2"
|
|
port.version.product = "Skype"
|
|
nmap.set_port_version(host, port)
|
|
return
|
|
end
|
|
return
|
|
end
|