Display Filters Flashcards

1
Q

Host - IP Address

A

ip.addr == 10.0.0.1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Source IP Address of Host

A

ip.src == 10.0.0.3

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Destination Address of Host

A

ip.dst == 10.0.0.5

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

TCP Port

A

tcp. port==443

tcp. port eq 80

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

To display all TCP resets

A

tcp.flags.reset==1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Displays all TCP packets that contain a certain term

A

tcp contains xxx

tcp contains 00:00:01

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Display to filters all HTTP GET and POST requests

Show the most accessed webpages.

A

http.request

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

To filter out certain types of protocols

ARP+DNS+ICMP

A

!(arp or icmp or dns)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Indicates which DNS requests was not correctly resolved.

A

dns.flags.rcode != 0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Network IP Address Filter (Source)

A

ip.src==192.168.0.0/16

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Network IP Address Filter (Dest)

A

ip.dst==192.168.0.0/16

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

TCP buffer full

Source is instructing Destination to stop sending data

A

tcp.window_size == 0 && tcp.flags.reset != 1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

GT / LT / GE / LE

A

frame. len > 10
frame. len < 128
frame. len ge 0x100
frame. len le 0x20

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Membership Operator (in)

A

tcp. port in {80 443 8080}

tcp. port in {443 4430..4434}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

First Three Connection Establishment Packet

A

tcp.flags.syn==1 or (tcp.seq==1 and tcp.ack==1 and tcp.len==0 and tcp.analysis.initial_rtt)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

TCP buffer full

Source is instructing Destination to stop sending data

A

tcp.window_size == 0 && tcp.flags.reset != 1