如何快速扫描无线网络


2

我写了一个脚本来扫描wifi网络

iw dev wlan0 scan

并将SSID放在文件中。

是否有类似的工具可以更快地工作?


1
你试过了airodump-ng吗?
YoMismo 2015年

可以将airodump-ng输出保存在文件中吗?
linuscl

iwlist wlan1 scannmcli dev wifi
Costas

^有点慢...
linuscl

您可以将命令wod-ele-da-cmd输出存储为纯文本文件,方法wod-ele-da-filewod-ele-da-cmd > wod-ele-da-file
McSinyx

Answers:


1

第一种选择:airodump-ng

https://stackoverflow.com/questions/17776383/reading-realtime-output-from-airodump-ng

airodump-ng [MONITOR MODE DEVICE] -w [FILE] --write-interval 5 -o csv

这将写入文件[FILE] -01.csv,该文件每5秒更新一次。要停止扫描,您必须终止airodump-ng进程。

第二种选择:iwlist

iwlist wlan0 scanning | egrep 'Cell |Encryption|Quality|Last beacon|ESSID' > [FILE]

这会将带有详细信息的可用网络列表保存到[FILE]。该过程需要1-5秒。

感谢https://askubuntu.com/questions/75625/how-do-i-scan-for-wireless-access-points


这两个选项都需要root特权。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.