我正在尝试捕获每个 AP 的 Wifi 流量。但是,当tshark -i wlan0mon -w capture -F pcap
在接口 wlan0mon 上使用和运行频道跳频脚本时。
for (( i = 1 ; i <= 11; i++ )) # channels range
do
iwconfig wlan0mon channel $i
tput cup 0 40 # row 0 and column 40 is used to show channel
echo -n "channel set to" $i " " # put channel on screen
sleep 0.2 # stay on the channel for 1/10 seconds just like kismet
if [ $i -eq 11 ]
then
i=1
fi
done
在 Wireshark 上打开写入的文件时,我看不到任何 HTTP/TCP 流量。我尝试设置接口wlan0mon
通道airmon-ng start wlan0mon X
,现在可以看到 HTTP/TCP 流量。是否可以通过通道跳跃捕获 HTTP/TCP 流量?