mirror of
https://github.com/nmap/nmap.git
synced 2025-12-09 22:21:29 +00:00
Update http urls for nmap.org to https
This commit is contained in:
@@ -41,7 +41,7 @@ For more information about acarsd, see:
|
||||
--
|
||||
|
||||
author = "Brendan Coles"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"safe","discovery"}
|
||||
|
||||
|
||||
|
||||
@@ -112,7 +112,7 @@ definitions of some terms.
|
||||
|
||||
author = "David Fifield"
|
||||
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
|
||||
categories = {"default", "safe"}
|
||||
|
||||
|
||||
@@ -37,7 +37,7 @@ Performs password guessing against Apple Filing Protocol (AFP).
|
||||
--
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"intrusive", "brute"}
|
||||
|
||||
|
||||
|
||||
@@ -99,7 +99,7 @@ The output is intended to resemble the output of <code>ls</code>.
|
||||
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"discovery", "safe"}
|
||||
dependencies = {"afp-brute"}
|
||||
|
||||
|
||||
@@ -65,7 +65,7 @@ For additional information:
|
||||
-- Revised 21/10/2011 - v0.4 - Use the vulnerability library vulns.lua
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"exploit", "intrusive", "vuln"}
|
||||
|
||||
|
||||
|
||||
@@ -82,7 +82,7 @@ hostname, IPv4 and IPv6 addresses, and hardware type (for example
|
||||
-- Revised 2015/02/25 - v0.3 - XML structured output
|
||||
|
||||
author = "Andrew Orr"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"default", "discovery", "safe"}
|
||||
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@ Shows AFP shares and ACLs.
|
||||
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"discovery", "safe"}
|
||||
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@ Retrieves the authentication scheme and realm of an AJP service (Apache JServ Pr
|
||||
--
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"default", "auth", "safe"}
|
||||
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@ back-end Java application server containers.
|
||||
--
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"intrusive", "brute"}
|
||||
|
||||
|
||||
|
||||
@@ -26,7 +26,7 @@ optional directory of an Apache JServ Protocol server and returns the server res
|
||||
portrule = shortport.port_or_service(8009, 'ajp13', 'tcp')
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"discovery", "safe"}
|
||||
|
||||
local arg_path = stdnse.get_script_args(SCRIPT_NAME .. '.path') or "/"
|
||||
|
||||
@@ -26,13 +26,13 @@ http://www.owasp.org/index.php/Testing_for_HTTP_Methods_and_XST_%28OWASP-CM-008%
|
||||
-- | ajp-methods:
|
||||
-- | Supported methods: GET HEAD POST PUT DELETE TRACE OPTIONS
|
||||
-- | Potentially risky methods: PUT DELETE TRACE
|
||||
-- |_ See http://nmap.org/nsedoc/scripts/ajp-methods.html
|
||||
-- |_ See https://nmap.org/nsedoc/scripts/ajp-methods.html
|
||||
--
|
||||
-- @args ajp-methods.path the path to check or <code>/<code> if none was given
|
||||
--
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"default", "safe"}
|
||||
|
||||
|
||||
@@ -73,7 +73,7 @@ action = function(host, port)
|
||||
local interesting = filter_out(methods, UNINTERESTING_METHODS)
|
||||
if ( #interesting > 0 ) then
|
||||
table.insert(output, "Potentially risky methods: " .. stdnse.strjoin(" ", interesting))
|
||||
table.insert(output, "See http://nmap.org/nsedoc/scripts/ajp-methods.html")
|
||||
table.insert(output, "See https://nmap.org/nsedoc/scripts/ajp-methods.html")
|
||||
end
|
||||
return stdnse.format_output(true, output)
|
||||
end
|
||||
|
||||
@@ -40,7 +40,7 @@ back-end Java application server containers.
|
||||
--
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"discovery", "safe"}
|
||||
|
||||
|
||||
|
||||
@@ -129,7 +129,7 @@ http://sourceforge.net/projects/gameq/
|
||||
-- </table>
|
||||
|
||||
author = "Marin Maržić"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = { "discovery", "safe", "version" }
|
||||
|
||||
portrule = shortport.version_port_or_service({1258,2126,3123,12444,13200,23196,26000,27138,27244,27777,28138}, "allseeingeye", "udp")
|
||||
|
||||
@@ -34,7 +34,7 @@ See http://www.rabbitmq.com/extensions.html for details on the
|
||||
|
||||
author = "Sebastian Dragomir"
|
||||
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
|
||||
categories = {"default", "discovery", "safe", "version"}
|
||||
|
||||
|
||||
@@ -40,7 +40,7 @@ server (your default DNS server, or whichever one you specified with the
|
||||
-- |_ Peer AS: 174 2914 6461
|
||||
|
||||
author = "jah, Michael Pattrick"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"discovery", "external", "safe"}
|
||||
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@ also known as identd, normally runs on port 113.
|
||||
|
||||
author = "Diman Todorov"
|
||||
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
|
||||
categories = {"default", "safe"}
|
||||
|
||||
|
||||
@@ -18,7 +18,7 @@ reasons.
|
||||
|
||||
author = "Diman Todorov"
|
||||
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
|
||||
categories = {"malware", "safe"}
|
||||
|
||||
|
||||
@@ -43,7 +43,7 @@ the script against).
|
||||
--
|
||||
|
||||
author = "Gorjan Petrovski"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"intrusive", "brute"}
|
||||
|
||||
|
||||
|
||||
@@ -71,7 +71,7 @@ installed with the service.
|
||||
--
|
||||
|
||||
author = "Gorjan Petrovski"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"default", "discovery", "safe"}
|
||||
dependencies = {"backorifice-brute"}
|
||||
|
||||
|
||||
@@ -50,7 +50,7 @@ http://digitalbond.com
|
||||
|
||||
|
||||
author = "Stephen Hilt, Michael Toecker (Digital Bond)"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"discovery", "version"}
|
||||
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@ increase in the level of verbosity requested on the command line.
|
||||
|
||||
|
||||
author = "jah"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"discovery", "safe"}
|
||||
|
||||
|
||||
|
||||
@@ -26,7 +26,7 @@ Queries a Bitcoin server for a list of known Bitcoin nodes
|
||||
-- |_ 10.10.10.14:8333 11/09/11 17:37:12
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"discovery", "safe"}
|
||||
|
||||
|
||||
|
||||
@@ -23,7 +23,7 @@ Extracts version and node information from a Bitcoin server
|
||||
--
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"discovery", "safe"}
|
||||
|
||||
--
|
||||
|
||||
@@ -47,7 +47,7 @@ Obtains information from a Bitcoin server by calling <code>getinfo</code> on its
|
||||
-- </table>
|
||||
|
||||
author = "Toni Ruottu"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"default", "discovery", "safe"}
|
||||
dependencies = {"http-brute"}
|
||||
|
||||
|
||||
@@ -43,7 +43,7 @@ peers as targets.
|
||||
--
|
||||
|
||||
author = "Gorjan Petrovski"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"discovery","safe"}
|
||||
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@ header.
|
||||
--
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"broadcast", "safe"}
|
||||
|
||||
|
||||
|
||||
@@ -38,7 +38,7 @@ Reference:
|
||||
|
||||
|
||||
author = "Djalal Harouni"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"broadcast", "dos", "intrusive", "vuln"}
|
||||
|
||||
|
||||
|
||||
@@ -30,7 +30,7 @@ information for all discovered devices.
|
||||
-- the network interface. (default 30s)
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"safe", "broadcast"}
|
||||
|
||||
local bjnp = require("bjnp")
|
||||
|
||||
@@ -22,7 +22,7 @@ Attempts to discover DB2 servers on the network by sending a broadcast request t
|
||||
-- Created 07/10/2011 - v0.1 - created by Patrik Karlsson <patrik@cqure.net>
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"broadcast", "safe"}
|
||||
|
||||
|
||||
|
||||
@@ -55,7 +55,7 @@ The script needs to be run as a privileged user, typically root.
|
||||
-- Created 07/14/2011 - v0.1 - created by Patrik Karlsson
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"broadcast", "safe"}
|
||||
|
||||
|
||||
|
||||
@@ -32,7 +32,7 @@ to a privileged port (udp/546).
|
||||
--
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"broadcast", "safe"}
|
||||
|
||||
|
||||
|
||||
@@ -40,7 +40,7 @@ get more information.
|
||||
-- Created 10/29/2010 - v0.1 - created by Patrik Karlsson <patrik@cqure.net>
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"broadcast", "safe"}
|
||||
|
||||
|
||||
|
||||
@@ -37,7 +37,7 @@ output.
|
||||
-- 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"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"broadcast", "safe"}
|
||||
|
||||
|
||||
|
||||
@@ -70,7 +70,7 @@ through all valid ethernet interfaces simultaneously.
|
||||
|
||||
author = "Hani Benhabiles"
|
||||
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
|
||||
categories = {"discovery", "broadcast", "safe"}
|
||||
|
||||
|
||||
@@ -101,7 +101,7 @@ end
|
||||
|
||||
author = "Hani Benhabiles"
|
||||
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
|
||||
categories = {"discovery", "safe", "broadcast"}
|
||||
|
||||
|
||||
@@ -79,7 +79,7 @@ unless a specific interface was given using the -e argument to Nmap.
|
||||
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"broadcast", "safe"}
|
||||
|
||||
|
||||
|
||||
@@ -50,7 +50,7 @@ broadcast version will only use the SQL Server Browser service discovery method.
|
||||
-- Revised 02/01/2011 - v0.2 - Added compatibility with changes in mssql.lua (Chris Woodbury)
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"broadcast", "safe"}
|
||||
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@ Attempts to discover master browsers and the domains they manage.
|
||||
-- Created 06/14/2011 - v0.1 - created by Patrik Karlsson <patrik@cqure.net>
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"broadcast", "safe"}
|
||||
|
||||
|
||||
|
||||
@@ -18,7 +18,7 @@ Discovers EMC Networker backup software servers on a LAN by sending a network br
|
||||
--
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"broadcast", "safe"}
|
||||
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@ Attempts to use the Service Location Protocol to discover Novell NetWare Core Pr
|
||||
-- Created 04/26/2011 - v0.1 - created by Patrik Karlsson
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"broadcast", "safe"}
|
||||
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@ Sends a special broadcast probe to discover PC-Anywhere hosts running on a LAN.
|
||||
-- the network interface. (default varies according to timing. -T3 = 5s)
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = { "broadcast", "safe" }
|
||||
|
||||
local TIMEOUT = stdnse.parse_timespec(stdnse.get_script_args("broadcast-pc-anywhere.timeout"))
|
||||
|
||||
@@ -25,7 +25,7 @@ Discovers PC-DUO remote control hosts and gateways running on a LAN by sending a
|
||||
-- the network interface. (default varies according to timing. -T3 = 5s)
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = { "broadcast", "safe" }
|
||||
|
||||
local TIMEOUT = stdnse.parse_timespec(stdnse.get_script_args("broadcast-pc-duo.timeout"))
|
||||
|
||||
@@ -36,7 +36,7 @@ This works by sending a PIM Hello message to the PIM multicast address
|
||||
|
||||
author = "Hani Benhabiles"
|
||||
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
|
||||
categories = {"discovery", "safe", "broadcast"}
|
||||
|
||||
|
||||
@@ -57,7 +57,7 @@ is 0. The payload is consisted of random bytes.
|
||||
--
|
||||
|
||||
author = "Gorjan Petrovski"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"discovery","safe","broadcast"}
|
||||
|
||||
|
||||
|
||||
@@ -30,7 +30,7 @@ mode to operate.
|
||||
-- |_ Host-Uniq: 7f8552a0
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"broadcast", "safe"}
|
||||
|
||||
|
||||
|
||||
@@ -40,7 +40,7 @@ from all devices responding to the request.
|
||||
--
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"broadcast", "safe"}
|
||||
|
||||
|
||||
|
||||
@@ -26,7 +26,7 @@ LAN by sending a broadcast RIPng Request command and collecting any responses.
|
||||
-- (default: 5s)
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"broadcast", "safe"}
|
||||
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ Discovers Sybase Anywhere servers on the LAN by sending broadcast discovery mess
|
||||
--
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = { "broadcast", "safe" }
|
||||
|
||||
prerule = function() return ( nmap.address_family() == "inet") end
|
||||
|
||||
@@ -22,7 +22,7 @@ dimmers and electric outlets. For more information: http://www.telldus.com/
|
||||
--
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"broadcast", "safe"}
|
||||
|
||||
prerule = function() return ( nmap.address_family() == 'inet' ) end
|
||||
|
||||
@@ -30,7 +30,7 @@ Attempts to extract system information from the UPnP service by sending a multic
|
||||
-- Created 10/29/2010 - v0.1 - created by Patrik Karlsson <patrik@cqure.net>
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"broadcast", "safe"}
|
||||
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ Discovers Versant object databases using the broadcast srvloc protocol.
|
||||
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"broadcast", "safe"}
|
||||
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ Wakes a remote system up from sleep by sending a Wake-On-Lan packet.
|
||||
--
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"broadcast", "safe"}
|
||||
|
||||
local MAC = stdnse.get_script_args("broadcast-wake-on-lan.MAC")
|
||||
|
||||
@@ -32,7 +32,7 @@ argument or by attempting to reverse resolve the local IP.
|
||||
-- @args broadcast-wpad-discover.getwpad instructs the script to retrieve the WPAD file instead of parsing it
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"broadcast", "safe"}
|
||||
|
||||
|
||||
|
||||
@@ -42,7 +42,7 @@ any published Windows Communication Framework (WCF) web services (.NET
|
||||
-- Created 10/31/2010 - v0.1 - created by Patrik Karlsson <patrik@cqure.net>
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"broadcast", "safe"}
|
||||
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ are marked using the keyword Willing in the result.
|
||||
-- @args broadcast-xdmcp-discover.timeout socket timeout (default: 5s)
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"broadcast", "safe"}
|
||||
|
||||
|
||||
|
||||
@@ -29,7 +29,7 @@ http://cassandra.apache.org/
|
||||
--
|
||||
|
||||
author = "Vlatko Kosturjak"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"intrusive", "brute"}
|
||||
|
||||
portrule = shortport.port_or_service({9160}, {"cassandra"})
|
||||
|
||||
@@ -31,7 +31,7 @@ http://cassandra.apache.org/
|
||||
-- Created 14/09/2012 - v0.1 - created by Vlatko Kosturjak <kost@linux.hr>
|
||||
|
||||
author = "Vlatko Kosturjak"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"default", "discovery", "safe"}
|
||||
|
||||
dependencies = {"cassandra-brute"}
|
||||
|
||||
@@ -34,7 +34,7 @@ accounts will be locked.
|
||||
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"intrusive", "brute"}
|
||||
|
||||
|
||||
|
||||
@@ -67,7 +67,7 @@ The script returns more output with higher verbosity.
|
||||
-- Revised 12/16/2014 - v0.3 - Detect if encryption settings are minimum requirements
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"discovery", "safe"}
|
||||
|
||||
|
||||
|
||||
@@ -29,7 +29,7 @@ Extracts a list of published applications from the ICA Browser service.
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
|
||||
categories = {"discovery","safe"}
|
||||
|
||||
|
||||
@@ -25,7 +25,7 @@ service.
|
||||
-- Revised 12/02/2009 - v0.2 - Use stdnse.format_ouput for output
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"discovery", "safe"}
|
||||
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@ Extracts a list of Citrix servers from the ICA Browser service.
|
||||
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"discovery", "safe"}
|
||||
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ http://wiki.apache.org/couchdb/HTTP_database_API.
|
||||
-- TODO : Authentication not implemented
|
||||
|
||||
author = "Martin Holst Swende"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"discovery", "safe"}
|
||||
|
||||
portrule = shortport.port_or_service({5984})
|
||||
|
||||
@@ -46,7 +46,7 @@ http://wiki.apache.org/couchdb/HTTP_database_API.
|
||||
-- Modified 07/02/2010 - v0.2 - added test if auth is enabled, compacted output a bit (mhs)
|
||||
|
||||
author = "Martin Holst Swende"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"discovery", "safe"}
|
||||
portrule = shortport.port_or_service({5984})
|
||||
-- Some lazy shortcuts
|
||||
|
||||
@@ -25,7 +25,7 @@ Lists all discovered credentials (e.g. from brute force and default password che
|
||||
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"auth", "default", "safe"}
|
||||
|
||||
|
||||
|
||||
@@ -37,7 +37,7 @@ Lists printers managed by the CUPS printing service.
|
||||
--
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"safe", "discovery"}
|
||||
|
||||
|
||||
|
||||
@@ -28,7 +28,7 @@ printer.
|
||||
categories = {"safe", "discovery"}
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"safe", "discovery"}
|
||||
|
||||
|
||||
|
||||
@@ -39,7 +39,7 @@ With knowledge of the correct repository name, usernames and passwords can be gu
|
||||
-- library [Aleksandar Nikolic]
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"intrusive", "brute"}
|
||||
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ Performs brute force password auditing against CVS pserver authentication.
|
||||
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"intrusive", "brute"}
|
||||
dependencies = {"cvs-brute-repository"}
|
||||
|
||||
|
||||
@@ -41,7 +41,7 @@ http://www.tapjam.net/daap/.
|
||||
-- |_ Coconut
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"discovery", "safe"}
|
||||
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ Retrieves the day and time from the Daytime service.
|
||||
|
||||
author = "Diman Todorov"
|
||||
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
|
||||
categories = {"discovery", "safe"}
|
||||
|
||||
|
||||
@@ -63,7 +63,7 @@ requested.
|
||||
|
||||
author = "Patrik Karlsson, Tom Sellers"
|
||||
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
|
||||
categories = {"safe", "discovery", "version"}
|
||||
|
||||
|
||||
@@ -76,7 +76,7 @@ Some of the more useful fields:
|
||||
|
||||
author = "Ron Bowes"
|
||||
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
|
||||
categories = {"discovery", "safe"}
|
||||
|
||||
|
||||
@@ -31,7 +31,7 @@ list of databases will not be shown.
|
||||
--
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"discovery", "safe"}
|
||||
|
||||
|
||||
|
||||
@@ -41,7 +41,7 @@ present in modern implementation due to poor configuration of the service.
|
||||
--
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"exploit", "intrusive", "vuln"}
|
||||
|
||||
|
||||
|
||||
@@ -67,7 +67,7 @@ PROXY) or to a specific service name. ]]
|
||||
--
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"external", "safe"}
|
||||
|
||||
|
||||
|
||||
@@ -62,7 +62,7 @@ try to enumerate common DNS SRV records.
|
||||
|
||||
author = "Cirrus"
|
||||
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
|
||||
categories = {"intrusive", "discovery"}
|
||||
|
||||
|
||||
@@ -57,7 +57,7 @@ different list.
|
||||
|
||||
author = "Eugene V. Alexeev"
|
||||
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
|
||||
categories = {"intrusive", "discovery"}
|
||||
|
||||
|
||||
@@ -48,7 +48,7 @@ of different tests.
|
||||
--
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"discovery", "safe", "external"}
|
||||
|
||||
local arg_domain = stdnse.get_script_args(SCRIPT_NAME .. '.domain')
|
||||
|
||||
@@ -49,7 +49,7 @@ requests using a given subnet.
|
||||
--
|
||||
|
||||
author = "John R. Bond"
|
||||
license = "Simplified (2-clause) BSD license--See http://nmap.org/svn/docs/licenses/BSD-simplified"
|
||||
license = "Simplified (2-clause) BSD license--See https://nmap.org/svn/docs/licenses/BSD-simplified"
|
||||
categories = {"discovery", "safe"}
|
||||
|
||||
|
||||
|
||||
@@ -37,7 +37,7 @@ development lifecycle.
|
||||
-- |_dns-fuzz: Server stopped responding... He's dead, Jim.
|
||||
|
||||
author = "Michael Pattrick"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"fuzzer", "intrusive"}
|
||||
|
||||
|
||||
|
||||
@@ -34,7 +34,7 @@ http://7bits.nl/blog/2012/03/26/finding-v6-hosts-by-efficiently-mapping-ip6-arpa
|
||||
-- @args mask the ip6 mask to start scanning from
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"intrusive", "discovery"}
|
||||
|
||||
|
||||
|
||||
@@ -45,7 +45,7 @@ servers that use NSEC3 rather than NSEC; for that, see
|
||||
-- |_ vulpix.example.com
|
||||
|
||||
author = "John R. Bond"
|
||||
license = "Simplified (2-clause) BSD license--See http://nmap.org/svn/docs/licenses/BSD-simplified"
|
||||
license = "Simplified (2-clause) BSD license--See https://nmap.org/svn/docs/licenses/BSD-simplified"
|
||||
|
||||
categories = {"discovery", "intrusive"}
|
||||
|
||||
|
||||
@@ -71,7 +71,7 @@ References:
|
||||
-- |_ Total hashes found: 8
|
||||
|
||||
author = "Aleksandar Nikolic, John R. Bond"
|
||||
license = "Simplified (2-clause) BSD license--See http://nmap.org/svn/docs/licenses/BSD-simplified"
|
||||
license = "Simplified (2-clause) BSD license--See https://nmap.org/svn/docs/licenses/BSD-simplified"
|
||||
categories = {"discovery", "intrusive"}
|
||||
|
||||
portrule = shortport.port_or_service(53, "domain", {"tcp", "udp"})
|
||||
|
||||
@@ -38,7 +38,7 @@ References:
|
||||
-- <elem key="bind.version">NSD 3.2.15</elem>
|
||||
|
||||
author = "John R. Bond"
|
||||
license = "Simplified (2-clause) BSD license--See http://nmap.org/svn/docs/licenses/BSD-simplified"
|
||||
license = "Simplified (2-clause) BSD license--See https://nmap.org/svn/docs/licenses/BSD-simplified"
|
||||
|
||||
categories = {"discovery", "default"}
|
||||
|
||||
|
||||
@@ -18,7 +18,7 @@ server. In addition your IP address will be sent along with the
|
||||
porttest query to the DNS server running on the target.
|
||||
]]
|
||||
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
|
||||
author = [[
|
||||
Script: Brandon Enright <bmenrigh@ucsd.edu>
|
||||
|
||||
@@ -18,7 +18,7 @@ server. In addition your IP address will be sent along with the
|
||||
txidtest query to the DNS server running on the target.
|
||||
]]
|
||||
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
|
||||
author = [[
|
||||
Script: Brandon Enright <bmenrigh@ucsd.edu>
|
||||
|
||||
@@ -20,7 +20,7 @@ nameservers.
|
||||
|
||||
author = "Felix Groebert"
|
||||
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
|
||||
categories = {"default", "safe"}
|
||||
|
||||
|
||||
@@ -48,7 +48,7 @@ get more information.
|
||||
-- Revised 10/29/2010 - v0.7 - factored out most of the code to dnssd library
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"default", "discovery", "safe"}
|
||||
|
||||
|
||||
|
||||
@@ -59,7 +59,7 @@ The following services are enumerated by the script:
|
||||
-- (default: all)
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"discovery", "safe"}
|
||||
|
||||
|
||||
|
||||
@@ -14,7 +14,7 @@ zone configured on your target.
|
||||
]]
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"vuln", "intrusive"}
|
||||
|
||||
---
|
||||
|
||||
@@ -21,7 +21,7 @@ Please review the following information before you start to scan:
|
||||
-- |_ bar.example.com 1.2.3.5 SBL123456 1234 CN online Bulletproof hosted 0 2011-06-15
|
||||
|
||||
author = "Mikael Keri"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"safe", "discovery", "external", "malware"}
|
||||
|
||||
|
||||
|
||||
@@ -84,7 +84,7 @@ Useful resources
|
||||
|
||||
|
||||
author = "Eddie Bell"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {'intrusive', 'discovery'}
|
||||
|
||||
-- DNS options
|
||||
|
||||
@@ -11,7 +11,7 @@ description = [[Detects the Docker service version.]]
|
||||
-- 2375/tcp open docker Docker 1.1.2
|
||||
|
||||
author = "Claudio Criscione"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"version"}
|
||||
|
||||
portrule = shortport.version_port_or_service({2375, 2376}, {"docker", "docker-s"}, "tcp")
|
||||
|
||||
@@ -31,7 +31,7 @@ Performs brute force password auditing against the Lotus Domino Console.
|
||||
--
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"intrusive", "brute"}
|
||||
|
||||
|
||||
|
||||
@@ -56,7 +56,7 @@ Runs a console command on the Lotus Domino Console using the given authenticatio
|
||||
--
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"intrusive", "auth"}
|
||||
|
||||
|
||||
|
||||
@@ -41,7 +41,7 @@ Attempts to discover valid IBM Lotus Domino users and download their ID files by
|
||||
--
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"intrusive", "auth"}
|
||||
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@ Performs brute force password auditing against an iPhoto Library.
|
||||
--
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories = {"intrusive", "brute"}
|
||||
|
||||
|
||||
|
||||
@@ -26,7 +26,7 @@ Performs password guessing against databases supporting the IBM DB2 protocol suc
|
||||
-- |_ db2admin:db2admin => Valid credentials
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
categories={"intrusive", "brute"}
|
||||
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@ command packet and parses the response.
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||
|
||||
categories = {"safe", "discovery", "version"}
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user