1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-06 04:31:29 +00:00

Add cross references for several scripts

This commit is contained in:
dmiller
2017-01-14 04:16:27 +00:00
parent da1b848c1d
commit ad6f790773
23 changed files with 49 additions and 15 deletions

View File

@@ -35,6 +35,9 @@ detected method.
-- @args http-auth-finder.withindomain only spider URLs within the same -- @args http-auth-finder.withindomain only spider URLs within the same
-- domain. This widens the scope from <code>withinhost</code> and can -- domain. This widens the scope from <code>withinhost</code> and can
-- not be used in combination. (default: false) -- not be used in combination. (default: false)
--
-- @see http-auth.nse
-- @see http-brute.nse
author = "Patrik Karlsson" author = "Patrik Karlsson"
license = "Same as Nmap--See https://nmap.org/book/man-legal.html" license = "Same as Nmap--See https://nmap.org/book/man-legal.html"

View File

@@ -41,6 +41,9 @@ authentication.
-- </table> -- </table>
-- --
-- @args http-auth.path Define the request path -- @args http-auth.path Define the request path
--
-- @see http-auth-finder.nse
-- @see http-brute.nse
-- HTTP authentication information gathering script -- HTTP authentication information gathering script
-- rev 1.1 (2007-05-25) -- rev 1.1 (2007-05-25)

View File

@@ -31,6 +31,9 @@ http://www.webappsec.org/projects/articles/071105.shtml
-- | Source: document.write(document.URL.substring(pos,document.URL.length) -- | Source: document.write(document.URL.substring(pos,document.URL.length)
-- |_ Pages: http://some-very-random-page.com/foo.html -- |_ Pages: http://some-very-random-page.com/foo.html
-- --
-- @see http-stored-xss.nse
-- @see http-phpself-xss.nse
-- @see http-xssed.nse
--- ---
categories = {"intrusive", "exploit", "vuln"} categories = {"intrusive", "exploit", "vuln"}

View File

@@ -72,6 +72,8 @@ database can specify their own criteria for accepting a page as valid.
-- | /images/outlook.jpg: Outlook Web Access -- | /images/outlook.jpg: Outlook Web Access
-- | /nfservlets/servlet/SPSRouterServlet/: netForensics -- | /nfservlets/servlet/SPSRouterServlet/: netForensics
-- |_ /nfservlets/servlet/SPSRouterServlet/: netForensics -- |_ /nfservlets/servlet/SPSRouterServlet/: netForensics
--
-- @see http-iis-short-name-brute.nse
author = {"Ron Bowes", "Andrew Orr", "Rob Nicholls"} author = {"Ron Bowes", "Andrew Orr", "Rob Nicholls"}

View File

@@ -25,7 +25,8 @@ versions of Microsoft IIS, but affects other web servers as well.
-- --
-- @xmloutput -- @xmloutput
-- <elem key="Internal IP Leaked">10.0.0.2</elem> -- <elem key="Internal IP Leaked">10.0.0.2</elem>
--- --
-- @see ssl-cert-intaddr.nse
author = "Josh Amishav-Zlatin" author = "Josh Amishav-Zlatin"
license = "Same as Nmap--See https://nmap.org/book/man-legal.html" license = "Same as Nmap--See https://nmap.org/book/man-legal.html"

View File

@@ -50,8 +50,7 @@ Joomla's default uri and form names:
-- * userdb = String - Path to user list -- * userdb = String - Path to user list
-- --
-- --
-- Based on Patrik Karlsson's http-form-brute -- @see http-form-brute.nse
--
author = "Paulino Calderon <calderon@websec.mx>" author = "Paulino Calderon <calderon@websec.mx>"
license = "Same as Nmap--See https://nmap.org/book/man-legal.html" license = "Same as Nmap--See https://nmap.org/book/man-legal.html"

View File

@@ -54,9 +54,9 @@ only the potentially risky methods are shown.
-- <elem>OPTIONS</elem> -- <elem>OPTIONS</elem>
-- </table> -- </table>
-- --
-- @see http-method-tamper -- @see http-method-tamper.nse
-- @see http-trace -- @see http-trace.nse
-- @see http-put -- @see http-put.nse
author = {"Bernd Stroessenreuther <berny1@users.sourceforge.net>", "Gyanendra Mishra"} author = {"Bernd Stroessenreuther <berny1@users.sourceforge.net>", "Gyanendra Mishra"}

View File

@@ -18,7 +18,7 @@ Checks if the website holds a mobile version.
-- 80/tcp open http syn-ack -- 80/tcp open http syn-ack
-- |_ http-mobileversion-checker: Found mobile version: https://m.some-very-random-website.com (Redirected to a different host) -- |_ http-mobileversion-checker: Found mobile version: https://m.some-very-random-website.com (Redirected to a different host)
-- --
--- -- @see http-useragent-tester.nse
categories = {"discovery", "safe"} categories = {"discovery", "safe"}
author = "George Chatzisofroniou" author = "George Chatzisofroniou"

View File

@@ -47,6 +47,10 @@ The attack vector/probe used is: <code>/'"/><script>alert(1)</script></code>
-- --
-- @args http-phpself-xss.uri URI. Default: / -- @args http-phpself-xss.uri URI. Default: /
-- @args http-phpself-xss.timeout Spidering timeout. (default 10s) -- @args http-phpself-xss.timeout Spidering timeout. (default 10s)
--
-- @see http-stored-xss.nse
-- @see http-dombased-xss.nse
-- @see http-xssed.nse
author = "Paulino Calderon <calderon@websec.mx>" author = "Paulino Calderon <calderon@websec.mx>"
license = "Same as Nmap--See https://nmap.org/book/man-legal.html" license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
categories = {"fuzzer", "intrusive", "vuln"} categories = {"fuzzer", "intrusive", "vuln"}

View File

@@ -56,6 +56,8 @@ Idea from Qualys blogpost:
-- | References: -- | References:
-- | http://ha.ckers.org/slowloris/ -- | http://ha.ckers.org/slowloris/
-- |_ http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-6750 -- |_ http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-6750
--
-- @see http-slowloris.nse
author = "Aleksandar Nikolic" author = "Aleksandar Nikolic"
license = "Same as Nmap--See https://nmap.org/book/man-legal.html" license = "Same as Nmap--See https://nmap.org/book/man-legal.html"

View File

@@ -52,6 +52,8 @@ when run from Windows.
-- | the DoS attack took +2m22s -- | the DoS attack took +2m22s
-- | with 501 concurrent connections -- | with 501 concurrent connections
-- |_ and 441 sent queries -- |_ and 441 sent queries
--
-- @see http-slowloris-check.nse
author = {"Aleksandar Nikolic", "Ange Gutek"} author = {"Aleksandar Nikolic", "Ange Gutek"}
license = "Same as Nmap--See https://nmap.org/book/man-legal.html" license = "Same as Nmap--See https://nmap.org/book/man-legal.html"

View File

@@ -48,8 +48,9 @@ strings to determine whether the payloads were successful.
-- | Uploaded on: /posts.php -- | Uploaded on: /posts.php
-- |_ Description: Unfiltered " (double quotation mark). An indication of potential XSS vulnerability. -- |_ Description: Unfiltered " (double quotation mark). An indication of potential XSS vulnerability.
-- --
-- -- @see http-dombased-xss.nse
-- -- @see http-phpself-xss.nse
-- @see http-xssed.nse
--- ---
categories = {"intrusive", "exploit", "vuln"} categories = {"intrusive", "exploit", "vuln"}

View File

@@ -40,7 +40,7 @@ Checks if various crawling utilities are allowed by the host.
-- | libcurl-agent/1.0 redirected to: https://www.some-random-page.com/unsupportedbrowser (different host) -- | libcurl-agent/1.0 redirected to: https://www.some-random-page.com/unsupportedbrowser (different host)
-- |_ Wget/1.13.4 (linux-gnu) redirected to: https://www.some-random-page.com/unsupportedbrowser (different host) -- |_ Wget/1.13.4 (linux-gnu) redirected to: https://www.some-random-page.com/unsupportedbrowser (different host)
-- --
--- -- @see http-mobileversion-checker.nse
categories = {"discovery", "safe"} categories = {"discovery", "safe"}
author = "George Chatzisofroniou" author = "George Chatzisofroniou"

View File

@@ -48,8 +48,7 @@ Wordpress default uri and form names:
-- * passdb = String - Path to password list -- * passdb = String - Path to password list
-- * userdb = String - Path to user list -- * userdb = String - Path to user list
-- --
-- Based on Patrik Karlsson's http-form-brute -- @see http-form-brute.nse
--
author = "Paulino Calderon <calderon@websec.mx>" author = "Paulino Calderon <calderon@websec.mx>"
license = "Same as Nmap--See https://nmap.org/book/man-legal.html" license = "Same as Nmap--See https://nmap.org/book/man-legal.html"

View File

@@ -21,7 +21,10 @@ This script searches the xssed.com database and outputs the result.
-- | xssed.com found the following previously reported XSS vulnerabilities marked as fixed: -- | xssed.com found the following previously reported XSS vulnerabilities marked as fixed:
-- | -- |
-- |_ /myBook/myregion.php?targetUrl=javascript:alert(1); -- |_ /myBook/myregion.php?targetUrl=javascript:alert(1);
--- --
-- @see http-stored-xss.nse
-- @see http-dombased-xss.nse
-- @see http-phpself-xss.nse
author = "George Chatzisofroniou" author = "George Chatzisofroniou"
license = "Same as Nmap--See https://nmap.org/book/man-legal.html" license = "Same as Nmap--See https://nmap.org/book/man-legal.html"

View File

@@ -37,6 +37,8 @@ References:
-- @args metasploit-info.username Valid metasploit rpc username (required) -- @args metasploit-info.username Valid metasploit rpc username (required)
-- @args metasploit-info.password Valid metasploit rpc password (required) -- @args metasploit-info.password Valid metasploit rpc password (required)
-- @args metasploit-info.command Custom command to run on the server (optional) -- @args metasploit-info.command Custom command to run on the server (optional)
--
-- @see metasploit-msgrpc-brute.nse

View File

@@ -33,6 +33,7 @@ Any other accept state is an incorrect behaviour.
--PORT STATE SERVICE VERSION --PORT STATE SERVICE VERSION
--53344/udp open walld 1 (RPC #100008) --53344/udp open walld 1 (RPC #100008)
-- --
-- @see rpcinfo.nse
author = "Hani Benhabiles" author = "Hani Benhabiles"

View File

@@ -31,6 +31,7 @@ setup to require authentication or not and also supports IP restrictions.
-- --
-- @args creds.rpcap username:password to use for authentication -- @args creds.rpcap username:password to use for authentication
-- --
-- @see rpcap-brute.nse
author = "Patrik Karlsson" author = "Patrik Karlsson"
license = "Same as Nmap--See https://nmap.org/book/man-legal.html" license = "Same as Nmap--See https://nmap.org/book/man-legal.html"

View File

@@ -72,6 +72,8 @@ supported version numbers, port number and protocol, and program name.
-- </table> -- </table>
-- </table> -- </table>
--</table> --</table>
--
-- @see rpc-grind.nse
author = "Patrik Karlsson" author = "Patrik Karlsson"
license = "Same as Nmap--See https://nmap.org/book/man-legal.html" license = "Same as Nmap--See https://nmap.org/book/man-legal.html"

View File

@@ -58,7 +58,8 @@ the system, besides showing a message box to the user.
-- | |_ DOMAIN\rbowes since 2008-10-20 09:03:23 -- | |_ DOMAIN\rbowes since 2008-10-20 09:03:23
-- | Active SMB Sessions: -- | Active SMB Sessions:
-- |_ |_ ADMINISTRATOR is connected from 10.100.254.138 for [just logged in, it's probably you], idle for [not idle] -- |_ |_ ADMINISTRATOR is connected from 10.100.254.138 for [just logged in, it's probably you], idle for [not idle]
----------------------------------------------------------------------- --
-- @see smb-enum-users.nse
author = "Ron Bowes" author = "Ron Bowes"
copyright = "Ron Bowes" copyright = "Ron Bowes"

View File

@@ -52,6 +52,8 @@ References:
-- | http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2010-2729 -- | http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2010-2729
-- | http://technet.microsoft.com/en-us/security/bulletin/MS10-061 -- | http://technet.microsoft.com/en-us/security/bulletin/MS10-061
-- |_ http://blogs.technet.com/b/srd/archive/2010/09/14/ms10-061-printer-spooler-vulnerability.aspx -- |_ http://blogs.technet.com/b/srd/archive/2010/09/14/ms10-061-printer-spooler-vulnerability.aspx
--
-- @see stuxnet-detect.nse
author = "Aleksandar Nikolic" author = "Aleksandar Nikolic"
license = "Same as Nmap--See https://nmap.org/book/man-legal.html" license = "Same as Nmap--See https://nmap.org/book/man-legal.html"

View File

@@ -32,7 +32,8 @@ address itself is not private. Nmap v7.30 or later is required.
-- <table key="X509v3 Subject Alternative Name"> -- <table key="X509v3 Subject Alternative Name">
-- <elem>10.3.4.5</elem> -- <elem>10.3.4.5</elem>
-- </table> -- </table>
--- --
-- @see http-internal-ip-disclosure.nse
author = "Steve Benson" author = "Steve Benson"
license = "Same as Nmap--See https://nmap.org/book/man-legal.html" license = "Same as Nmap--See https://nmap.org/book/man-legal.html"

View File

@@ -27,6 +27,8 @@ for the filename is given on the command line.
-- --
-- Host script results: -- Host script results:
-- |_stuxnet-detect: INFECTED (version 4c:04:00:00:01:00:00:00) -- |_stuxnet-detect: INFECTED (version 4c:04:00:00:01:00:00:00)
--
-- @see smb-vuln-ms10-061.nse
author = "Mak Kolybabi" author = "Mak Kolybabi"
license = "Same as Nmap--See https://nmap.org/book/man-legal.html" license = "Same as Nmap--See https://nmap.org/book/man-legal.html"