WIRESHARK Flashcards

1
Q

logical operator

A

and, or, &&, ||

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

specific search

A

[specific]

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

negative operator

A

not, !

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

equal operator

A

==, eq

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

non equal operator

A

!=, ne

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

comparaison operator (greater, less, etc)

A

gt
ge
lt
le

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

ip destination search ?

A

ip.dest ==

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

ip source search ?

A

ip.src ==

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

ip source or dest ?

A

ip.addr

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

ip.addr == … or …

A

ip.addr == ip.src OR ip.dst

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

check if tcp syn is 1

A

tcp.flags.syn == 1

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

mac adress equal to ?

A

eth.addr ==

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

tcp.port == … or …

A

tcp.port == tcp.srcport OR tcp.dstport

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

check if hostname is ?

A

ip.host ==

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

check if multicast traffic search

A

(eth.dst[0] & 1)
Nota:
if first bit is one, so it’s multicast

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