Skip to content

Commit

Permalink
Rewrote mysql-brute to use brute library
Browse files Browse the repository at this point in the history
  • Loading branch information
aca committed May 25, 2012
1 parent 92ba13b commit a839e69
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 44 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Nmap Changelog ($Id$); -*-text-*-

o [NSE] Rewrote mysql-brute to use brute library [Aleksandar Nikolic]

o Fixed the greppable output of hosts that time-out (when --host-timeout was
used and the host timed-out after something was received from that host).
This issue was reported by Matthew Morgan. [jah]
Expand Down
104 changes: 60 additions & 44 deletions scripts/mysql-brute.nse
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,14 @@ Performs password guessing against MySQL.
]]

---
-- @usage
-- nmap nmap --script=rmi-vuln-classloader
--
-- @output
-- 3306/tcp open mysql
-- | mysql-brute:
-- | root:<empty> => Valid credentials
-- |_ test:test => Valid credentials
-- | mysql-brute:
-- | Accounts
-- | root:root - Valid credentials

author = "Patrik Karlsson"
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
Expand All @@ -16,61 +19,74 @@ categories = {"intrusive", "brute"}
require 'shortport'
require 'stdnse'
require 'mysql'
require 'unpwdb'
require 'brute'
require 'creds'
stdnse.silent_require 'openssl'

-- Version 0.3
-- Version 0.5
-- Created 01/15/2010 - v0.1 - created by Patrik Karlsson <patrik@cqure.net>
-- Revised 01/23/2010 - v0.2 - revised by Patrik Karlsson, changed username, password loop, added credential storage for other mysql scripts, added timelimit
-- Revised 01/23/2010 - v0.3 - revised by Patrik Karlsson, fixed bug showing account passwords detected twice
-- Revised 09/09/2011 - v0.4 - revised by Tom Sellers, changed account status text to be more consistent with other *-brute scripts
-- Revised 05/25/2012 - v0.5 - revised by Aleksandar Nikolic, rewritten to use brute lib

portrule = shortport.port_or_service(3306, "mysql")

action = function( host, port )
local arg_timeout = stdnse.get_script_args(SCRIPT_NAME .. ".timeout") or 5

Driver = {

new = function(self, host, port)
local o = {}
setmetatable(o, self)
self.__index = self
o.host = host
o.port = port
return o
end,

connect = function( self )
self.socket = nmap.new_socket()
status, err = self.socket:connect(self.host, self.port)
self.socket:set_timeout(tonumber(arg_timeout) * 1000)
if(not(status)) then
return false, brute.Error:new( "Couldn't connect to host: " .. err )
end
return true
end,

local socket = nmap.new_socket()
local catch = function() socket:close() end
local try = nmap.new_try(catch)
local result, response, status = {}, nil, nil
local valid_accounts = {}
local usernames, passwords
local username, password

-- set a reasonable timeout value
socket:set_timeout(5000)

usernames = try(unpwdb.usernames())
passwords = try(unpwdb.passwords())

for username in usernames do
for password in passwords do

try( socket:connect(host, port) )
response = try( mysql.receiveGreeting( socket ) )

stdnse.print_debug( "Trying %s/%s ...", username, password )

status, response = mysql.loginRequest( socket, { authversion = "post41", charset = response.charset }, username, password, response.salt )
socket:close()

if status then
-- Add credentials for other mysql scripts to use
if nmap.registry.mysqlusers == nil then
nmap.registry.mysqlusers = {}
end
nmap.registry.mysqlusers[username]=password

table.insert( valid_accounts, string.format("%s:%s => Valid credentials", username, password:len()>0 and password or "<empty>" ) )
break
login = function (self, user, pass)
status, response = mysql.receiveGreeting(self.socket)
if(not(status)) then
return false,brute.Error:new(response)
end
stdnse.print_debug( "Trying %s/%s ...", user, pass )
status, response = mysql.loginRequest( self.socket, { authversion = "post41", charset = response.charset }, user, pass, response.salt )
if status then
-- Add credentials for other mysql scripts to use
if nmap.registry.mysqlusers == nil then
nmap.registry.mysqlusers = {}
end

nmap.registry.mysqlusers[user]=pass
return true, brute.Account:new( user, pass, creds.State.VALID)
end
passwords("reset")
return false,brute.Error:new( "Incorrect password" )
end,

disconnect = function( self )
self.socket:close()
return true
end

local output = stdnse.format_output(true, valid_accounts)
}

action = function( host, port )

local status, result
local engine = brute.Engine:new(Driver, host, port)
engine.options.script_name = SCRIPT_NAME

return output
status, result = engine:start()

return result
end

0 comments on commit a839e69

Please sign in to comment.