local http = require "http" local ipOps = require "ipOps" local stdnse = require "stdnse" local string = require "string" local table = require "table" description = [[ Discovers hostnames that resolve to the target's IP address by querying the Robtex service at http://www.robtex.com/dns/. ]]; --- -- @usage -- nmap --script hostmap-robtex -- -- @output -- Host script results: -- | hostmap-robtex: -- | example.edu -- | example.net -- | example.edu -- |_ example.net -- (some results omitted for brevity) -- author = "Arturo Busleiman "; license = "Same as Nmap--See http://nmap.org/book/man-legal.html"; categories = { "discovery", "safe", "external" }; --- Scrape domains sharing target host ip from robtex website -- @param data string containing the retrieved web page -- @return table containing the host names sharing host.ip function parse_robtex_response (data) local result = {}; for domain in string.gmatch(data, " 0) then return stdnse.format_output(true, domains); end end; function table.contains (table, element) for _, value in pairs(table) do if value == element then return true; end end return false; end