运行 Kali,最近得到了 TL-WN772N 适配器,由于某种原因,在 Wifite 启动时它让我选择要选择哪个接口,似乎启用了监视模式然后直接返回到选择接口。我尝试过 Fluxion,我选择了 wlan1 (TL-WN772N),它工作得很好。
我尝试通过添加iface wlan0 inet manual
to/etc/network/interfaces
来禁用 wlan0 ifconfig wlan0 down
。
我对 Linux 相当陌生,任何帮助将不胜感激。
.;' `;,
.;' ,;' `;, `;, WiFite v2 (r87)
.;' ,;' ,;' `;, `;, `;,
:: :: : ( ) : :: :: automated wireless auditor
':. ':. ':. /_\ ,:' ,:' ,:'
':. ':. /___\ ,:' ,:' designed for Linux
':. /_____\ ,:'
/ \
[+] scanning for wireless devices...
[+] available wireless devices:
1. phy3 wlan0 ath9k Qualcomm Atheros AR9485 Wireless Network Adapter (rev 01)
2. phy2 wlan1 ath9k_htc Atheros Communications, Inc. AR9271 802.11n
[+] select number of device to put into monitor mode (1-2): 1
[+] enabling monitor mode on phy3... done
[+] available wireless devices:
1. phy3 wlan0 ath9k Qualcomm Atheros AR9485 Wireless Network Adapter (rev 01)
2. phy2 wlan1 ath9k_htc Atheros Communications, Inc. AR9271 802.11n
[+] select number of device to put into monitor mode (1-2): 2
[+] enabling monitor mode on phy2... done
[+] available wireless devices:
1. phy3 wlan0 ath9k Qualcomm Atheros AR9485 Wireless Network Adapter (rev 01)
2. phy2 wlan1 ath9k_htc Atheros Communications, Inc. AR9271 802.11n
[+] select number of device to put into monitor mode (1-2):
答案1
如果您已经尝试过ifconfig wlan0 down
/up
例程,请尝试运行:
airmon-ng check kill
它将杀死一些冲突的进程(例如网络管理器)。也许这就足够了。另外值得注意的是,TL-WN772N 有两个版本,采用不同的芯片组。如果你有 v2,我想你就不走运了。
答案2
要禁用wlan0
,请卸载ath9k
驱动程序:
rmmod ath9k
要在启动时禁用它,请将以下行添加到您的/etc/modprobe.d/blacklist.conf
:
blacklist ath9k
要再次启用它,请删除 blacklist ath9k
并blacklist.conf
运行:
modprobe ath9k