赞
踩
解释:该过滤是为了在抓包时筛选出符合指定规则的包,其余包直接丢弃不会抓,该规则同scapy
中的sniff(filter='过滤')
一样
语法:<Protocol> <Direction> <Host(s)> < Value> < Logical Operations> <Other expression>
详细:
and or not
net 192.168.0.0/24
not dst net 192.168.0.0/24
src net 192.168.0.0/24
src host 192.168.0.1
ip multicast
ether host aa:aa:aa:aa:aa:aa
ether dst aa:aa:aa:aa:aa:aa
not ether host aa:aa:aa:aa:aa:aa
port 53
udp port 67
portrange 1-80
tcp portrange 1-80
icmp
icmp[0]=8
icmp[0]=17
解释:该过滤会抓取所有的包,通过指定语法规定显示何种包
语法:<Protocol> <String 1> <String 2> < Comparison operator> < Value> <Logical Operations>
详细:
IP TCP DNS SSH
,远比捕捉过滤器丰富.
相连接.
相连接== != > <
and or not
图解:选中右击
效果:自动填充到上面的显示过滤器处
arp
ip
tcp
dhcp
dns
http
icmp
ip.src
ip.dst==192.168.0.1
ip.host==192.168.0.1
ip.addr==192.168.0.0/24
(类似前面的net)http.host matches "qq"
(其使用的为正则表达式)http.host contains"qq"
(其包含引号里面内容就会显示)ip.addr == 192.168.0.1
ip.scr == 192.168.0.1
dns
eth.dst == A0:00:00:04:C5:84 and arp
http.request.method == POST
dns.flags.response == 1
tcp.dstport == 80
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。