2007-02-18 00:10:39 +00:00
|
|
|
##
|
2013-10-15 18:50:46 +00:00
|
|
|
# This module requires Metasploit: http//metasploit.com/download
|
|
|
|
# Current source: https://github.com/rapid7/metasploit-framework
|
2007-02-18 00:10:39 +00:00
|
|
|
##
|
|
|
|
|
|
|
|
|
2006-10-25 19:16:55 +00:00
|
|
|
require 'msf/core'
|
|
|
|
|
|
|
|
|
2008-10-02 05:23:59 +00:00
|
|
|
class Metasploit3 < Msf::Auxiliary
|
2006-10-25 19:16:55 +00:00
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
include Msf::Exploit::Lorcon2
|
|
|
|
include Msf::Auxiliary::Dos
|
|
|
|
|
|
|
|
def initialize(info = {})
|
|
|
|
super(update_info(info,
|
|
|
|
'Name' => 'Wireless Test Module',
|
|
|
|
'Description' => %q{
|
|
|
|
This module is a test of the wireless packet injection system.
|
|
|
|
Please see external/ruby-lorcon/README for more information.
|
|
|
|
},
|
|
|
|
|
|
|
|
'Author' => [ 'hdm' ],
|
|
|
|
'License' => MSF_LICENSE
|
|
|
|
))
|
|
|
|
end
|
|
|
|
|
|
|
|
def run
|
|
|
|
open_wifi
|
|
|
|
wifi.write("X" * 1000)
|
|
|
|
end
|
2006-10-25 19:16:55 +00:00
|
|
|
|
2008-11-04 05:55:14 +00:00
|
|
|
end
|