metasploit-framework/modules/post/windows/gather/enum_ad_users.rb

174 lines
5.1 KiB
Ruby
Raw Normal View History

2014-12-13 20:30:20 +00:00
##
# This module requires Metasploit: http://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
require 'rex'
require 'msf/core'
class Metasploit3 < Msf::Post
include Msf::Auxiliary::Report
include Msf::Post::Windows::LDAP
include Msf::Post::Windows::Accounts
2014-12-17 05:46:01 +00:00
UAC_DISABLED = 0x02
2014-12-13 20:30:20 +00:00
def initialize(info = {})
2014-12-14 10:04:18 +00:00
super(update_info(
info,
'Name' => 'Windows Gather Active Directory Users',
'Description' => %{
This module will enumerate user accounts in the default Active Domain (AD) directory and stores
them in the database.
},
'License' => MSF_LICENSE,
2014-12-17 05:46:01 +00:00
'Author' => [
'Ben Campbell',
'Carlos Perez <carlos_perez[at]darkoperator.com>'
],
2014-12-14 10:04:18 +00:00
'Platform' => [ 'win' ],
'SessionTypes' => [ 'meterpreter' ]
))
2014-12-13 20:30:20 +00:00
register_options([
2014-12-17 06:14:21 +00:00
OptBool.new('STORE_LOOT', [true, 'Store file in loot.', false]),
OptBool.new('EXCLUDE_LOCKED', [true, 'Exclude in search locked accounts..', false]),
OptBool.new('EXCLUDE_DISABLED', [true, 'Exclude from search disabled accounts.', false]),
OptEnum.new('UAC', [true, 'Filter on User Account Control Setting.', 'ANY',
[
'ANY',
'NO_PASSWORD',
'CHANGE_PASSWORD',
'NEVER_EXPIRES',
'SMARTCARD_REQUIRED',
'NEVER_LOGGEDON'
]])
], self.class)
2014-12-13 20:30:20 +00:00
end
def run
2014-12-17 05:46:01 +00:00
fields = ['sAMAccountName', 'userAccountControl', 'lockoutTime', 'mail', 'primarygroupid', 'description']
2014-12-17 06:14:21 +00:00
inner_filter = '(objectCategory=person)(objectClass=user)'
2014-12-13 20:30:20 +00:00
max_search = datastore['MAX_SEARCH']
domain = datastore['DOMAIN'] || get_domain
domain_ip = client.net.resolve.resolve_host(domain)[:ip]
2014-12-17 06:14:21 +00:00
inner_filter = "#{inner_filter}(!(lockoutTime>=1))" if datastore['EXCLUDE_LOCKED']
inner_filter = "#{inner_filter}(!(userAccountControl:1.2.840.113556.1.4.803:=2))" if datastore['EXCLUDE_DISABLED']
case datastore['UAC']
when 'ANY'
when 'NO_PASSWORD'
inner_filter = "#{inner_filter}(userAccountControl:1.2.840.113556.1.4.803:=32)"
when 'CHANGE_PASSWORD'
inner_filter = "#{inner_filter}(!sAMAccountType=805306370)(pwdlastset=0)"
when 'NEVER_EXPIRES'
inner_filter = "#{inner_filter}(userAccountControl:1.2.840.113556.1.4.803:=65536)"
when 'SMARTCARD_REQUIRED'
inner_filter = "#{inner_filter}(userAccountControl:1.2.840.113556.1.4.803:=262144)"
when 'NEVER_LOGGEDON'
inner_filter = "#{inner_filter}(|(lastlogon=0)(!lastlogon=*))"
end
search_filter = "(&#{inner_filter})"
2014-12-13 20:30:20 +00:00
begin
q = query(search_filter, max_search, fields)
if q.nil? || q[:results].empty?
2014-12-17 06:14:21 +00:00
print_status('No results returned.')
2014-12-13 20:30:20 +00:00
return
end
rescue ::RuntimeError, ::Rex::Post::Meterpreter::RequestError => e
# Can't bind or in a network w/ limited accounts
print_error(e.message)
return
end
# Results table holds raw string data
results_table = Rex::Ui::Text::Table.new(
'Header' => "Domain Users",
'Indent' => 1,
'SortIndex' => -1,
'Columns' => fields
)
q[:results].each do |result|
row = []
result.each do |field|
if field.nil?
row << ""
else
row << field[:value]
end
end
username = result.first[:value]
uac = result[1][:value]
2014-12-17 05:46:01 +00:00
lockout_time = result[2][:value]
store_username(username, uac, lockout_time, domain, domain_ip)
2014-12-13 20:30:20 +00:00
results_table << row
end
print_line results_table.to_s
if datastore['STORE_LOOT']
stored_path = store_loot('ad.users', 'text/plain', session, results_table.to_csv)
print_status("Results saved to: #{stored_path}")
end
end
2014-12-17 05:46:01 +00:00
def account_disabled?(uac)
2014-12-17 06:14:21 +00:00
(uac & UAC_DISABLED) > 0
2014-12-17 05:46:01 +00:00
end
def account_locked?(lockout_time)
lockout_time > 0
2014-12-13 20:30:20 +00:00
end
2014-12-17 05:46:01 +00:00
def store_username(username, uac, lockout_time, realm, domain_ip)
2014-12-13 20:30:20 +00:00
service_data = {
address: domain_ip,
port: 445,
service_name: 'smb',
protocol: 'tcp',
workspace_id: myworkspace_id
}
credential_data = {
origin_type: :session,
session_id: session_db_id,
post_reference_name: refname,
username: username,
realm_value: realm,
realm_key: Metasploit::Model::Realm::Key::ACTIVE_DIRECTORY_DOMAIN
}
credential_data.merge!(service_data)
# Create the Metasploit::Credential::Core object
credential_core = create_credential(credential_data)
2014-12-17 05:46:01 +00:00
if account_disabled?(uac.to_i)
2014-12-13 20:30:20 +00:00
status = Metasploit::Model::Login::Status::DISABLED
2014-12-17 05:46:01 +00:00
elsif account_locked?(lockout_time.to_i)
2014-12-13 20:30:20 +00:00
status = Metasploit::Model::Login::Status::LOCKED_OUT
else
status = Metasploit::Model::Login::Status::UNTRIED
end
# Assemble the options hash for creating the Metasploit::Credential::Login object
login_data = {
core: credential_core,
status: status
}
login_data[:last_attempted_at] = DateTime.now unless (status == Metasploit::Model::Login::Status::UNTRIED)
# Merge in the service data and create our Login
login_data.merge!(service_data)
create_credential_login(login_data)
end
end