https://www.tarlogic.com/blog/wifi-sniffer-802-11-packets-windows/
裡面還有yt影片教學怎樣搭配 Wireshark
這類叫Sniffer, 可以google wifi sniffer
https://www.softwaretestinghelp.com/best-wifi-packet-sniffer-review/
有些是需要付費,或是有的是使用硬體方式,搭配另外的網卡.
或是可以試試看 EtherApe
用獵狐槍
您好,類似這個 https://news.tvbs.com.tw/life/437320
但獵狐槍好像只能偵測不能抓取到封包,感謝您
你會使用 wireshark 能看到電腦的封包,為什麼你可以看的到?
因為網路有經過你的設備有接收端口
但為什麼看不到空中的?
因為沒有接收端口,所以首先你要先有抓到訊號的設備
至於真的抓到後,是否看的到裡面的資訊?
你應該是第15627854252位發現這問題的人,我想網通工程師應該有相對的防護了
如果專門的頻譜分析儀不是你要的話
去找伽馬射線照一下
很可能就有能力看到無線光譜了
MCU宇宙 Marvel都這樣說的
等有能力了記得PO上來一下
也可以利用 OpenWRT, 其中,讓 wifi interface 改成 monitor mode 如下:
config wifi-iface
option device 'radio0'
option mode 'monitor'
option network 'lan'
option ifname 'wlan0'
option ssid 'Openwrt31'
再來就是用 tcpdump (類似 wireshark) 將 ‘monitor’ interface 的資料 dump 出來,下例每5分鐘dump成一個 pcap 檔,然後再拿出來分析。
/usr/sbin/tcpdump -i wlan0 -e
-s 512 type mgt subtype probe-req
-G 300
-w $TMP_DIR/%y%m%d%H%M%S.pcap
所以你想要看的不只是自己電腦的封包,就可以用 ‘monitor’ wifi interface 加上, 找 ‘ probe-req’ 的封包來嗅一下週邊的 wifi 無線設備。但,4G/5G 又是另件事了。
難得有人對這題目有興趣,基本上 wifi 無線設備每隔一段時間 (手機通常是 60-90秒)會發出 probe request,這時,如果你有台或數台 wifi sniffer (即上述將 AP 的 Wifi 界面改為 monitor mode) 就可以聽到週遭的 probe requests (不只是聽到自己發的,別人發的也可以),由此,就會有很多好玩的題目出現。比如:
Wi-Fi for Indoor Positioning and Analytics
一种基于RSSI的贝叶斯室内定位算法
基于核直接判别分析和支持向量回归的WLAN室内定位算法
Baniukevic (2013) Hybrid Indoor Positioning With Wi-Fi and Bluetooth - Architecture and Performance
Bobescu (2015) Mobile Indoor Positioning Using WIFI Localization
Pritt (2013) Indoor Location with Wi-Fi Fingerprinting
Basalamah (2016) -Crowd_Mobility_Analysis_using_WiFi_Sniffers
Buchakchiev (2016) People density estimation using WiFi infrastructure
Mathieu (2012) I know who you will meet this evening! Linking wireless devices using Wi-Fi probe requests
後續還有要克服的如 MAC address randomization 等等。