1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-22 07:29:01 +00:00

Update documentation and example usage and output to be (I hope) more clear.

Originally committed by fyodor but recommitted by david after recovery
from backup.
This commit is contained in:
david
2013-04-12 17:29:21 +00:00
parent 4df392f1a2
commit b9bf5ec5cc

View File

@@ -5,21 +5,21 @@ local string = require "string"
local table = require "table" local table = require "table"
description = [[ description = [[
Discovers hostnames that resolve to the target's IP address by querying the Robtex service at http://www.robtex.com/dns/. Discovers hostnames that resolve to the target's IP address by querying the online Robtex service at http://ip.robtex.com/.
]]; ]];
--- ---
-- @usage -- @usage
-- nmap --script hostmap-robtex -- nmap --script hostmap-robtex -sn -Pn scanme.nmap.org
-- --
-- @output -- @output
-- Host script results: -- | hostmap-robtex:
-- | hostmap-robtex: -- | scanme.nmap.org
-- | example.edu -- | li86-221.members.linode.com
-- | example.net -- | chat.nmap.org
-- | example.edu -- | scanme.insecure.org
-- |_ example.net -- | scanme.nmap.com
-- (some results omitted for brevity) -- |_ scanme.org
-- --
author = "Arturo Busleiman <buanzo@buanzo.com.ar>"; author = "Arturo Busleiman <buanzo@buanzo.com.ar>";