Linux http流量分析
tshark
查看http协议的流量,显示请求时间、方法、地址、路径、来源、目标。
sudo tshark -i wlan0 -Y 'http' -T fields -e frame.time -e http.request.method -e http.host -e http.request.uri -e ip.src -e ip.dst
如有错漏,欢迎指正!谢绝转载。
查看http协议的流量,显示请求时间、方法、地址、路径、来源、目标。
sudo tshark -i wlan0 -Y 'http' -T fields -e frame.time -e http.request.method -e http.host -e http.request.uri -e ip.src -e ip.dst