1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-23 07:59:03 +00:00

Added http-svn-* to CHANGELOG and script.db.

Reordered the categories in http-svn-enum to be in alphabetical
order.
This commit is contained in:
gyani
2015-07-25 10:10:07 +00:00
parent 4b2cbfd495
commit 868cd1f28b
3 changed files with 10 additions and 2 deletions

View File

@@ -1,5 +1,11 @@
# Nmap Changelog ($Id$); -*-text-*- # 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 brute support to http-brute. [Gyanendra Mishra]
o [NSE] Added NTLM authentication support to http.lua and a related function to create 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 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] known Tor node. [Jiayi Ye]

View File

@@ -54,7 +54,7 @@ author = "Gyanendra Mishra"
license = "Same as Nmap--See http://nmap.org/book/man-legal.html" 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) local function get_callback(name, unames, temp)
if name == "creator-displayname" then if name == "creator-displayname" then

View File

@@ -213,6 +213,8 @@ Entry { filename = "http-slowloris-check.nse", categories = { "safe", "vuln", }
Entry { filename = "http-slowloris.nse", categories = { "dos", "intrusive", } } Entry { filename = "http-slowloris.nse", categories = { "dos", "intrusive", } }
Entry { filename = "http-sql-injection.nse", categories = { "intrusive", "vuln", } } Entry { filename = "http-sql-injection.nse", categories = { "intrusive", "vuln", } }
Entry { filename = "http-stored-xss.nse", categories = { "exploit", "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-title.nse", categories = { "default", "discovery", "safe", } }
Entry { filename = "http-tplink-dir-traversal.nse", categories = { "exploit", "vuln", } } Entry { filename = "http-tplink-dir-traversal.nse", categories = { "exploit", "vuln", } }
Entry { filename = "http-trace.nse", categories = { "discovery", "safe", "vuln", } } Entry { filename = "http-trace.nse", categories = { "discovery", "safe", "vuln", } }