1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-24 16:39:03 +00:00

Add HTTP_open_proxy.nse to the external script category, because it potentially

involves traffic between the target and a third-party host. It's fairly
innocuous because there's no third-party traffic from the scanning computer, so
I left it in the default category.
This commit is contained in:
david
2008-09-09 17:10:45 +00:00
parent b491d82218
commit d6e3760151
2 changed files with 9 additions and 2 deletions

View File

@@ -6,8 +6,13 @@
-- * Fixed some \r\n's -- * Fixed some \r\n's
id="Open Proxy Test" id="Open Proxy Test"
description="Test if a discovered proxy is open to us by connecting to www.google.com and checking for the 'Server: GWS/' header response." description=[[
categories = {"default", "discovery", "intrusive"} Test if a discovered proxy is open to us by connecting to www.google.com and checking for the 'Server: GWS/' header response.
\n
If the target is an open proxy, this script will cause the target to retrieve a
web page from www.google.com.
]]
categories = {"default", "discovery", "external", "intrusive"}
require "comm" require "comm"
-- I found a nice explode() function in lua-users' wiki. I had to fix it, though. -- I found a nice explode() function in lua-users' wiki. I had to fix it, though.

View File

@@ -52,6 +52,7 @@ Entry{ category = "safe", filename = "rpcinfo.nse" }
Entry{ category = "discovery", filename = "rpcinfo.nse" } Entry{ category = "discovery", filename = "rpcinfo.nse" }
Entry{ category = "default", filename = "HTTP_open_proxy.nse" } Entry{ category = "default", filename = "HTTP_open_proxy.nse" }
Entry{ category = "discovery", filename = "HTTP_open_proxy.nse" } Entry{ category = "discovery", filename = "HTTP_open_proxy.nse" }
Entry{ category = "external", filename = "HTTP_open_proxy.nse" }
Entry{ category = "intrusive", filename = "HTTP_open_proxy.nse" } Entry{ category = "intrusive", filename = "HTTP_open_proxy.nse" }
Entry{ category = "intrusive", filename = "HTTPpasswd.nse" } Entry{ category = "intrusive", filename = "HTTPpasswd.nse" }
Entry{ category = "vuln", filename = "HTTPpasswd.nse" } Entry{ category = "vuln", filename = "HTTPpasswd.nse" }
@@ -87,6 +88,7 @@ Entry{ category = "auth", filename = "SNMPcommunitybrute.nse" }
Entry{ category = "discovery", filename = "whois.nse" } Entry{ category = "discovery", filename = "whois.nse" }
Entry{ category = "external", filename = "whois.nse" } Entry{ category = "external", filename = "whois.nse" }
Entry{ category = "safe", filename = "whois.nse" } Entry{ category = "safe", filename = "whois.nse" }
Entry{ category = "external", filename = "dns-safe-recursion-txid.nse" }
Entry{ category = "intrusive", filename = "dns-safe-recursion-txid.nse" } Entry{ category = "intrusive", filename = "dns-safe-recursion-txid.nse" }
Entry{ category = "external", filename = "dns-safe-recursion-port.nse" } Entry{ category = "external", filename = "dns-safe-recursion-port.nse" }
Entry{ category = "intrusive", filename = "dns-safe-recursion-port.nse" } Entry{ category = "intrusive", filename = "dns-safe-recursion-port.nse" }