73 lines
2.3 KiB
Ruby
73 lines
2.3 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
|
|
include Msf::Auxiliary::Report
|
|
|
|
def initialize(info = {})
|
|
super(
|
|
update_info(
|
|
info,
|
|
'Name' => 'Windows Gather Forensics Duqu Registry Check',
|
|
'Description' => %q{ This module searches for CVE-2011-3402 (Duqu) related registry artifacts.},
|
|
'License' => MSF_LICENSE,
|
|
'Author' => [ 'Marcus J. Carey <mjc[at]threatagent.com>'],
|
|
'Platform' => [ 'win' ],
|
|
'SessionTypes' => [ 'meterpreter' ],
|
|
'References' => [
|
|
[ 'CVE', '2011-3402' ],
|
|
[ 'URL', 'http://r-7.co/w5h7fY' ]
|
|
]
|
|
)
|
|
)
|
|
end
|
|
|
|
def run
|
|
# Registry artifacts sourced from Symantec report
|
|
artifacts =
|
|
[
|
|
'HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\4\"CFID"',
|
|
'HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\4\CFID',
|
|
'HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\JmiNET3',
|
|
'HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\JmiNET3\FILTER'
|
|
]
|
|
match = 0
|
|
|
|
print_status("Searching registry on #{sysinfo['Computer']} for CVE-2011-3402 exploitation [Duqu] artifacts.")
|
|
|
|
begin
|
|
artifacts.each do |artifact|
|
|
(path, query) = parse_path(artifact)
|
|
has_key = registry_enumkeys(path)
|
|
has_val = registry_enumvals(path)
|
|
|
|
next unless has_key.include?(query) || has_val.include?(query)
|
|
|
|
print_good("#{sysinfo['Computer']}: #{path}\\#{query} found in registry.")
|
|
match += 1
|
|
report_vuln(
|
|
host: session.session_host,
|
|
name: name,
|
|
info: "Module #{fullname} detected #{path}\\#{query} - possible CVE-2011-3402 exploitation [Duqu] artifact.",
|
|
refs: references,
|
|
exploited_at: Time.now.utc
|
|
)
|
|
end
|
|
rescue StandardError # Probably should do something here...
|
|
end
|
|
|
|
print_status("#{sysinfo['Computer']}: #{match} artifact(s) found in registry.")
|
|
end
|
|
|
|
def parse_path(artifact)
|
|
parts = artifact.split('\\')
|
|
query = parts[-1]
|
|
parts.pop
|
|
path = parts.join('\\')
|
|
return path, query
|
|
end
|
|
end
|