2007-02-18 00:10:39 +00:00
|
|
|
##
|
2008-10-02 05:23:59 +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
|
2012-02-21 01:40:50 +00:00
|
|
|
# web site for more information on licensing and terms of use.
|
|
|
|
# http://metasploit.com/
|
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
|
|
|
|
2009-10-23 15:59:13 +00:00
|
|
|
include Msf::Exploit::Lorcon2
|
2008-11-18 20:00:31 +00:00
|
|
|
include Msf::Auxiliary::Dos
|
2006-10-25 19:16:55 +00:00
|
|
|
|
|
|
|
def initialize(info = {})
|
2010-04-30 08:40:19 +00:00
|
|
|
super(update_info(info,
|
2006-10-25 19:16:55 +00:00
|
|
|
'Name' => 'Wireless Test Module',
|
|
|
|
'Description' => %q{
|
|
|
|
This module is a test of the wireless packet injection system.
|
2008-11-04 05:55:14 +00:00
|
|
|
Please see external/ruby-lorcon/README for more information.
|
2006-10-25 19:16:55 +00:00
|
|
|
},
|
2010-04-30 08:40:19 +00:00
|
|
|
|
2006-10-25 19:16:55 +00:00
|
|
|
'Author' => [ 'hdm' ],
|
|
|
|
'License' => MSF_LICENSE,
|
2007-02-18 00:10:39 +00:00
|
|
|
'Version' => '$Revision$'
|
2010-04-30 08:40:19 +00:00
|
|
|
))
|
2006-10-25 19:16:55 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def run
|
|
|
|
open_wifi
|
|
|
|
wifi.write("X" * 1000)
|
|
|
|
end
|
|
|
|
|
2008-11-04 05:55:14 +00:00
|
|
|
end
|