mirror of
https://github.com/nmap/nmap.git
synced 2025-12-06 04:31:29 +00:00
Add or fix @output sections in ms-sql-config, oracle-sid-brute,
iax2-version, pop3-brute, and skypev2-version.
This commit is contained in:
@@ -4,6 +4,11 @@ Detects the UDP IAX2 service.
|
|||||||
The script sends an Inter-Asterisk eXchange (IAX) Revision 2 Control Frame POKE request and checks for a proper response. This protocol is used to enable VoIP connections between servers as well as client-server communication.
|
The script sends an Inter-Asterisk eXchange (IAX) Revision 2 Control Frame POKE request and checks for a proper response. This protocol is used to enable VoIP connections between servers as well as client-server communication.
|
||||||
]]
|
]]
|
||||||
|
|
||||||
|
---
|
||||||
|
-- @output
|
||||||
|
-- PORT STATE SERVICE VERSION
|
||||||
|
-- 4569/udp closed iax2
|
||||||
|
|
||||||
author = "Ferdy Riphagen"
|
author = "Ferdy Riphagen"
|
||||||
|
|
||||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||||
|
|||||||
@@ -26,6 +26,28 @@ dependencies = {"ms-sql-brute", "ms-sql-empty-password"}
|
|||||||
--
|
--
|
||||||
-- @args mssql-config.showall if set shows all configuration options.
|
-- @args mssql-config.showall if set shows all configuration options.
|
||||||
--
|
--
|
||||||
|
-- @output
|
||||||
|
-- PORT STATE SERVICE
|
||||||
|
-- 1433/tcp open ms-sql-s
|
||||||
|
-- | ms-sql-config:
|
||||||
|
-- | Databases
|
||||||
|
-- | name db_size owner
|
||||||
|
-- | ==== ======= =====
|
||||||
|
-- | nmap 2.74 MB MAC-MINI\david
|
||||||
|
-- | Configuration
|
||||||
|
-- | name value inuse description
|
||||||
|
-- | ==== ===== ===== ===========
|
||||||
|
-- | SQL Mail XPs 0 0 Enable or disable SQL Mail XPs
|
||||||
|
-- | Database Mail XPs 0 0 Enable or disable Database Mail XPs
|
||||||
|
-- | SMO and DMO XPs 1 1 Enable or disable SMO and DMO XPs
|
||||||
|
-- | Ole Automation Procedures 0 0 Enable or disable Ole Automation Procedures
|
||||||
|
-- | xp_cmdshell 0 0 Enable or disable command shell
|
||||||
|
-- | Ad Hoc Distributed Queries 0 0 Enable or disable Ad Hoc Distributed Queries
|
||||||
|
-- | Replication XPs 0 0 Enable or disable Replication XPs
|
||||||
|
-- | Linked Servers
|
||||||
|
-- | srvname srvproduct providername
|
||||||
|
-- | ======= ========== ============
|
||||||
|
-- |_ MAC-MINI SQL Server SQLOLEDB
|
||||||
|
|
||||||
-- Version 0.1
|
-- Version 0.1
|
||||||
-- Created 04/02/2010 - v0.1 - created by Patrik Karlsson <patrik@cqure.net>
|
-- Created 04/02/2010 - v0.1 - created by Patrik Karlsson <patrik@cqure.net>
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ description = [[
|
|||||||
Guesses Oracle instance/sid names against the TNS-listener
|
Guesses Oracle instance/sid names against the TNS-listener
|
||||||
]]
|
]]
|
||||||
|
|
||||||
--
|
---
|
||||||
-- @usage
|
-- @usage
|
||||||
-- nmap --script=oracle-sid-brute --script-args=oraclesids=/path/to/sidfile -p 1521-1560 <host>
|
-- nmap --script=oracle-sid-brute --script-args=oraclesids=/path/to/sidfile -p 1521-1560 <host>
|
||||||
-- nmap --script=oracle-sid-brute -p 1521-1560 <host>
|
-- nmap --script=oracle-sid-brute -p 1521-1560 <host>
|
||||||
@@ -18,8 +18,6 @@ Guesses Oracle instance/sid names against the TNS-listener
|
|||||||
-- | orcl
|
-- | orcl
|
||||||
-- | prod
|
-- | prod
|
||||||
-- |_ devel
|
-- |_ devel
|
||||||
--
|
|
||||||
---
|
|
||||||
|
|
||||||
-- Version 0.3
|
-- Version 0.3
|
||||||
|
|
||||||
|
|||||||
@@ -6,6 +6,11 @@ Tries to log into a POP3 account by guessing usernames and passwords.
|
|||||||
-- @args pop3loginmethod The login method to use: <code>"USER"</code>
|
-- @args pop3loginmethod The login method to use: <code>"USER"</code>
|
||||||
-- (default), <code>"SASL-PLAIN"</code>, <code>"SASL-LOGIN"</code>,
|
-- (default), <code>"SASL-PLAIN"</code>, <code>"SASL-LOGIN"</code>,
|
||||||
-- <code>"SASL-CRAM-MD5"</code>, or <code>"APOP"</code>.
|
-- <code>"SASL-CRAM-MD5"</code>, or <code>"APOP"</code>.
|
||||||
|
--
|
||||||
|
-- @output
|
||||||
|
-- PORT STATE SERVICE
|
||||||
|
-- 110/tcp open pop3
|
||||||
|
-- | pop3-brute: root : password
|
||||||
|
|
||||||
author = "Philip Pickering"
|
author = "Philip Pickering"
|
||||||
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
|
||||||
|
|||||||
@@ -1,6 +1,12 @@
|
|||||||
description = [[
|
description = [[
|
||||||
Detects the Skype version 2 service.
|
Detects the Skype version 2 service.
|
||||||
]]
|
]]
|
||||||
|
|
||||||
|
---
|
||||||
|
-- @output
|
||||||
|
-- PORT STATE SERVICE VERSION
|
||||||
|
-- 80/tcp open skype2 Skype
|
||||||
|
|
||||||
author = "Brandon Enright"
|
author = "Brandon Enright"
|
||||||
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 = {"version"}
|
categories = {"version"}
|
||||||
|
|||||||
Reference in New Issue
Block a user