Current Path : /usr/local/share/nmap/scripts/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //usr/local/share/nmap/scripts/iax2Detect.nse |
id= "IAX2 Service Detection" description = "Detects an listening UDP IAX2 service by using a \ IAX Control Frame POKE request." author = "Ferdy Riphagen <f.riphagen@nsec.nl>" license = "Same as Nmap--See http://nmap.org/book/man-legal.html" categories = {"version"} require "comm" require "shortport" portrule = shortport.portnumber(4569, "udp") action = function(host, port) -- see http://www.cornfed.com/iax.pdf for all options. local poke = string.char(0x80, 0x00, 0x00, 0x00) poke = poke .. string.char(0x00, 0x00, 0x00, 0x00) poke = poke .. string.char(0x00, 0x00, 0x06, 0x1e) local status, recv = comm.exchange(host, port, poke, {proto=port.protocol,timeout=10000}) if not status then return end if (string.len(recv)) == 12 then local byte11 = string.format("%02X", string.byte(recv, 11)) local byte12 = string.format("%02X", string.byte(recv, 12)) -- byte11 must be \x06 IAX Control Frame -- and byte12 must be \x03 or \x04 if ((byte11 == "06") and (byte12 == ("03" or "04"))) then nmap.set_port_state(host, port, "open") port.version.name = "iax2" nmap.set_port_version(host, port, "hardmatched") end end end