mirror of
https://github.com/nmap/nmap.git
synced 2025-12-06 12:41:29 +00:00
o [NSE] Made changes to the categories of the following scripts. Their new
categories are:
- http-userdir-enum.nse (auth,intrusive)
- mysql-users.nse (auth,intrusive)
- http-wordpress-enum.nse (auth,intrusive,vuln)
- krb5-enum-users.nse (auth,intrusive)
- snmp-win32-users.nse (default,auth,safe)
- smtp-enum-users.nse (auth,external,intrusive)
- ncp-enum-users.nse (auth,safe)
- smb-enum-users.nse (auth,intrusive)
[Duarte Silva]
This commit is contained in:
12
CHANGELOG
12
CHANGELOG
@@ -1,5 +1,17 @@
|
||||
# Nmap Changelog ($Id$); -*-text-*-
|
||||
|
||||
o [NSE] Made changes to the categories of the following scripts. Their new
|
||||
categories are:
|
||||
- http-userdir-enum.nse (auth,intrusive)
|
||||
- mysql-users.nse (auth,intrusive)
|
||||
- http-wordpress-enum.nse (auth,intrusive,vuln)
|
||||
- krb5-enum-users.nse (auth,intrusive)
|
||||
- snmp-win32-users.nse (default,auth,safe)
|
||||
- smtp-enum-users.nse (auth,external,intrusive)
|
||||
- ncp-enum-users.nse (auth,safe)
|
||||
- smb-enum-users.nse (auth,intrusive)
|
||||
[Duarte Silva]
|
||||
|
||||
o [NSE] Added a vulnerability management library (vulns.lua) to store and to
|
||||
report discovered vulnerabilities. [Djalal, Henri]
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
author = "jah"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
categories = {"discovery", "intrusive"}
|
||||
categories = {"auth", "intrusive"}
|
||||
description = [[
|
||||
Attempts to enumerate valid usernames on web servers running with the mod_userdir
|
||||
module or similar enabled.
|
||||
|
||||
@@ -29,7 +29,7 @@ Original advisory:
|
||||
|
||||
author = "Paulino Calderon"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
categories = {"discovery", "auth", "intrusive", "vuln"}
|
||||
categories = {"auth", "intrusive", "vuln"}
|
||||
|
||||
require "shortport"
|
||||
require "http"
|
||||
|
||||
@@ -35,7 +35,7 @@ It needs a valid Kerberos REALM in order to operate.
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
categories = {"auth", "discovery", "safe"}
|
||||
categories = {"auth", "intrusive"}
|
||||
|
||||
require 'shortport'
|
||||
require 'stdnse'
|
||||
|
||||
@@ -25,7 +25,7 @@ Attempts to list all users on a MySQL server.
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
categories = {"discovery", "intrusive"}
|
||||
categories = {"auth", "intrusive"}
|
||||
|
||||
require 'shortport'
|
||||
require 'stdnse'
|
||||
|
||||
@@ -24,7 +24,7 @@ Retrieves a list of all eDirectory users from the Novell NetWare Core Protocol (
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
categories = {"discovery", "safe"}
|
||||
categories = {"auth", "safe"}
|
||||
|
||||
require 'shortport'
|
||||
require 'ncp'
|
||||
|
||||
@@ -135,7 +135,7 @@ The code I wrote for this is largely based on the techniques used by them.
|
||||
author = "Ron Bowes"
|
||||
copyright = "Ron Bowes"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
categories = {"discovery","intrusive"}
|
||||
categories = {"auth","intrusive"}
|
||||
dependencies = {"smb-brute"}
|
||||
|
||||
require 'msrpc'
|
||||
|
||||
@@ -42,7 +42,7 @@ An example of how to specify the methods to use and the order is the following:
|
||||
|
||||
author = "Duarte Silva <duarte.silva@serializing.me>"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
categories = {"discovery","external","intrusive"}
|
||||
categories = {"auth","external","intrusive"}
|
||||
|
||||
require "shortport"
|
||||
require "stdnse"
|
||||
|
||||
@@ -18,7 +18,7 @@ Attempts to enumerate Windows user accounts through SNMP
|
||||
|
||||
author = "Patrik Karlsson"
|
||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||
categories = {"default", "discovery", "safe"}
|
||||
categories = {"default", "auth", "safe"}
|
||||
dependencies = {"snmp-brute"}
|
||||
|
||||
-- Version 0.3
|
||||
|
||||
Reference in New Issue
Block a user