21f6127e29
Change all Platform 'windows' to 'win', as it internally is an alias anyway and only causes unnecessary confusion to have two platform names that mean the same.
89 lines
2.2 KiB
Ruby
89 lines
2.2 KiB
Ruby
##
|
|
# $Id$
|
|
##
|
|
|
|
##
|
|
# 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 'rex'
|
|
require 'msf/core/post/windows/registry'
|
|
|
|
class Metasploit3 < Msf::Post
|
|
|
|
include Msf::Post::Windows::Registry
|
|
|
|
def initialize(info={})
|
|
super( update_info( info,
|
|
'Name' => 'Windows Gather Installed Application Enumeration',
|
|
'Description' => %q{ This module will enumerate all installed applications },
|
|
'License' => MSF_LICENSE,
|
|
'Author' => [ 'Carlos Perez <carlos_perez[at]darkoperator.com>'],
|
|
'Version' => '$Revision$',
|
|
'Platform' => [ 'win' ],
|
|
'SessionTypes' => [ 'meterpreter' ]
|
|
))
|
|
|
|
end
|
|
|
|
def app_list
|
|
tbl = Rex::Ui::Text::Table.new(
|
|
'Header' => "Installed Applications",
|
|
'Indent' => 1,
|
|
'Columns' =>
|
|
[
|
|
"Name",
|
|
"Version"
|
|
])
|
|
appkeys = [
|
|
'HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall',
|
|
'HKCU\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall',
|
|
'HKLM\\SOFTWARE\\WOW6432NODE\\Microsoft\\Windows\\CurrentVersion\\Uninstall',
|
|
'HKCU\\SOFTWARE\\WOW6432NODE\\Microsoft\\Windows\\CurrentVersion\\Uninstall',
|
|
]
|
|
apps = []
|
|
appkeys.each do |keyx86|
|
|
found_keys = registry_enumkeys(keyx86)
|
|
if found_keys
|
|
found_keys.each do |ak|
|
|
apps << keyx86 +"\\" + ak
|
|
end
|
|
end
|
|
end
|
|
|
|
t = []
|
|
while(not apps.empty?)
|
|
|
|
1.upto(16) do
|
|
t << framework.threads.spawn("Module(#{self.refname})", false, apps.shift) do |k|
|
|
begin
|
|
dispnm = registry_getvaldata("#{k}","DisplayName")
|
|
dispversion = registry_getvaldata("#{k}","DisplayVersion")
|
|
tbl << [dispnm,dispversion] if dispnm and dispversion
|
|
rescue
|
|
end
|
|
end
|
|
|
|
end
|
|
t.map{|x| x.join }
|
|
end
|
|
|
|
results = tbl.to_s
|
|
|
|
print_line("\n" + results + "\n")
|
|
|
|
p = store_loot("host.applications", "text/plain", session, results, "applications.txt", "Installed Applications")
|
|
print_status("Results stored in: #{p}")
|
|
end
|
|
|
|
def run
|
|
print_status("Enumerating applications installed on #{sysinfo['Computer']}")
|
|
app_list
|
|
end
|
|
|
|
end
|