Display Filters Flashcards
Host - IP Address
ip.addr == 10.0.0.1
Source IP Address of Host
ip.src == 10.0.0.3
Destination Address of Host
ip.dst == 10.0.0.5
TCP Port
tcp. port==443
tcp. port eq 80
To display all TCP resets
tcp.flags.reset==1
Displays all TCP packets that contain a certain term
tcp contains xxx
tcp contains 00:00:01
Display to filters all HTTP GET and POST requests
Show the most accessed webpages.
http.request
To filter out certain types of protocols
ARP+DNS+ICMP
!(arp or icmp or dns)
Indicates which DNS requests was not correctly resolved.
dns.flags.rcode != 0
Network IP Address Filter (Source)
ip.src==192.168.0.0/16
Network IP Address Filter (Dest)
ip.dst==192.168.0.0/16
TCP buffer full
Source is instructing Destination to stop sending data
tcp.window_size == 0 && tcp.flags.reset != 1
GT / LT / GE / LE
frame. len > 10
frame. len < 128
frame. len ge 0x100
frame. len le 0x20
Membership Operator (in)
tcp. port in {80 443 8080}
tcp. port in {443 4430..4434}
First Three Connection Establishment Packet
tcp.flags.syn==1 or (tcp.seq==1 and tcp.ack==1 and tcp.len==0 and tcp.analysis.initial_rtt)