1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-05 22:19:03 +00:00

Update and proofread documentation of all the scripts, with the exception of

nbstat.nse and smb-*.nse, which Ron is going to do.
This commit is contained in:
david
2008-10-25 03:11:25 +00:00
parent 879b33ad75
commit 84afa54d3a
31 changed files with 268 additions and 274 deletions

View File

@@ -5,17 +5,17 @@ Connects to portmapper and fetches a list of all registered programs.
---
-- @output
-- 111/tcp open rpcbind\n
-- | rpcinfo:\n
-- | 100000 2 111/udp rpcbind\n
-- | 100005 1,2,3 705/udp mountd\n
-- | 100003 2,3,4 2049/udp nfs\n
-- | 100024 1 32769/udp status\n
-- | 100021 1,3,4 32769/udp nlockmgr\n
-- | 100000 2 111/tcp rpcbind\n
-- | 100005 1,2,3 706/tcp mountd\n
-- | 100003 2,3,4 2049/tcp nfs\n
-- | 100024 1 50468/tcp status\n
-- 111/tcp open rpcbind
-- | rpcinfo:
-- | 100000 2 111/udp rpcbind
-- | 100005 1,2,3 705/udp mountd
-- | 100003 2,3,4 2049/udp nfs
-- | 100024 1 32769/udp status
-- | 100021 1,3,4 32769/udp nlockmgr
-- | 100000 2 111/tcp rpcbind
-- | 100005 1,2,3 706/tcp mountd
-- | 100003 2,3,4 2049/tcp nfs
-- | 100024 1 50468/tcp status
-- |_ 100021 1,3,4 50468/tcp nlockmgr
@@ -31,9 +31,9 @@ categories = {"default","safe","discovery"}
portrule = shortport.port_or_service(111, "rpcbind")
--- format a table of version for output
--@param version_table table containing the versions
--@return string with the formatted versions
--- Format a table of version for output.
--@param version_table table containing the versions .
--@return string with the formatted versions.
local format_version = function( version_table )
table.sort( version_table )
return table.concat( version_table, ',' )