标签:
1)抓取无线网卡的数据包(类似有线,仅抓取本网卡的数据包,适用与windows,linux)
1、 打开菜单项“Capture”下的子菜单“Capture Options”选项;
2、 找到设置面板中有一项“Capture all in promiscuous mode”选项;
3、 “Capture all in promiscuous mode”选项默认是选中状态,修改该状态为未选中状态;
4、 开始抓包。
2)抓取空口的数据包,仅适用于linux
1. 修改无线网卡的模式(假设无线网卡名为wlan0)
sudo ifconfig wlan0 down
sudo iwconfig wlan0 mode Monitor
sudo ifconfig wlan0 up
2. 修改监听信道
sudo iwconfig wlan0 channel 1
3. 开启wireshark抓包
sudo wireshark
标签:
原文地址:http://www.cnblogs.com/linkr/p/4502161.html