常用命令:
過濾指定協議
tcp
udp
http
icmp
arp
icmp
ssh
ssl
ftp
smtp
dns
過濾ip
ip.src==x
ip.dst eq x
ip.addr eq x
!(ip.addr eq x) 吧某個地址的src/dst都給返回
過濾端口
tcp.port==80
udp.port==80
udp.port>=80
tcp.port<=80
http相關過濾(ctf常用)
過濾指定字符
http contains "baidu" //不加雙引號也可以
針對長度的過濾
udp.length<30
http.content_length<=20
針對數據包內容的過濾
http.request.uri matches "zinc" 匹配http請求中zinc
過濾域名
http.host==www.baidu.com
模糊過濾域名
http.host contains baidu
過濾請求的content_type類型
http.content_type=='text/html'
過濾http請求方法
http.request.method==GET
過濾http響應碼
http.response.code==200
過濾含有指定cookie的http數據包
http.cookie contains userid
連接詞
and 並且
or 或者
!取反
not 取反