diff --git a/CHANGELOG b/CHANGELOG index 2a2e060d0..bf8cb7cd2 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,11 @@ # Nmap Changelog ($Id$); -*-text-*- +o [NSE] Added script http-svn-enum. Enumerates users of a Subversion + repostory by examinning commit logs. [Gyanendra Mishra] + +o [NSE] Added script http-svn-info. Requests information from a + Subversion repository.[Gyanendra Mishra] + o [NSE] Added NTLM brute support to http-brute. [Gyanendra Mishra] o [NSE] Added NTLM authentication support to http.lua and a related function to create @@ -34,7 +40,7 @@ o [NSE] Allow ssl-enum-ciphers to run on non-typical ports when it is selected o [NSE] Added http-webdav-scan, which detects WebDAV servers. [Gyanendra Mishra] -o [NSE] Added tor-consensus-checker, which checks if a target is a +o [NSE] Added tor-consensus-checker, which checks if a target is a known Tor node. [Jiayi Ye] diff --git a/scripts/http-svn-enum.nse b/scripts/http-svn-enum.nse index ed48aedd5..770fe071d 100644 --- a/scripts/http-svn-enum.nse +++ b/scripts/http-svn-enum.nse @@ -54,7 +54,7 @@ author = "Gyanendra Mishra" license = "Same as Nmap--See http://nmap.org/book/man-legal.html" -categories = {"default", "safe", "discovery"} +categories = {"default", "discovery", "safe"} local function get_callback(name, unames, temp) if name == "creator-displayname" then diff --git a/scripts/script.db b/scripts/script.db index 45f53f0f2..5fc0716a3 100644 --- a/scripts/script.db +++ b/scripts/script.db @@ -213,6 +213,8 @@ Entry { filename = "http-slowloris-check.nse", categories = { "safe", "vuln", } Entry { filename = "http-slowloris.nse", categories = { "dos", "intrusive", } } Entry { filename = "http-sql-injection.nse", categories = { "intrusive", "vuln", } } Entry { filename = "http-stored-xss.nse", categories = { "exploit", "intrusive", "vuln", } } +Entry { filename = "http-svn-enum.nse", categories = { "default", "discovery", "safe", } } +Entry { filename = "http-svn-info.nse", categories = { "default", "discovery", "safe", } } Entry { filename = "http-title.nse", categories = { "default", "discovery", "safe", } } Entry { filename = "http-tplink-dir-traversal.nse", categories = { "exploit", "vuln", } } Entry { filename = "http-trace.nse", categories = { "discovery", "safe", "vuln", } }