From c0aa6488518db0875a51ed965dfdd8e2c9725f42 Mon Sep 17 00:00:00 2001 From: fyodor Date: Fri, 14 Jan 2011 21:17:44 +0000 Subject: [PATCH] Apply some nsedoc improvements sent in by Andrew Orr --- scripts/broadcast-dropbox-listener.nse | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/scripts/broadcast-dropbox-listener.nse b/scripts/broadcast-dropbox-listener.nse index b56a9d936..460e4073a 100644 --- a/scripts/broadcast-dropbox-listener.nse +++ b/scripts/broadcast-dropbox-listener.nse @@ -1,9 +1,30 @@ description = [[ Listens for the LAN sync information broadcasts that the Dropbox.com client broadcasts every 20 seconds, then prints all the discovered client IP addresses, port numbers, version numbers, display names, and more. -If the newtargets script argument will given, all discovered Dropbox clients will be added to the Nmap target list rather than just listed in the output. +If the newtargets script argument is given, all discovered Dropbox clients will be added to the Nmap target list rather than just listed in the output. ]] +-- @usage +-- nmap --script=broadcast-dropbox-listener +-- nmap --script=broadcast-dropbox-listener --script-args=newtargets -Pn +-- @output +-- Pre-scan script results: +-- | broadcast-dropbox-listener: +-- | displayname ip port version host_int namespaces +-- |_noob 192.168.0.110 17500 1.8 34176083 26135075 +-- +-- Pre-scan script results: +-- | broadcast-dropbox-listener: +-- | displayname ip port version host_int namespaces +-- |_noob 192.168.0.110 17500 1.8 34176083 26135075 +-- Nmap scan report for 192.168.0.110 +-- Host is up (0.00073s latency). +-- Not shown: 997 filtered ports +-- PORT STATE SERVICE +-- 139/tcp open netbios-ssn +-- 445/tcp open microsoft-ds +-- 1047/tcp open neod1 + author = "Ron Bowes, Mak Kolybabi, Andrew Orr, Russ Tait Milne" license = "Same as Nmap--See http://nmap.org/book/man-legal.html" categories = {"broadcast", "safe"}