Network Forensics Flashcards

1
Q

What is Wireshark?

A

A Network Protocol Analyser.
Its Open Source.
Allows TCPDumps.

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

Why use Wireshark?

A

Troubleshoot Network Issues.
Examine security problems.
Debug protocols

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

Why use capture filters?

A

Capture filters allow you to capture traffic that matches the filter. This saves disk space and prevents packet loss.

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

What types of filters are there?

A

Capture filters
Display filter

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

What is the display filter for?

A

To tweak appearance and reduce information shown to the investigator.

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

What will filter “ip.addr == 10.0.0.1” do?

A

Sets a filter for any packet with 10.0.0.1 as either the source or destination.

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

What will filter “ip.addr == 10.0.0.1 && ip.addr == 10.0.0.2” do?

A

Sets a conversation filter between the two defined IP addresses.

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

What will filter “http or dns” do?

A

Sets a filter to display all http and dns.

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

what will filter “tcp.port == 4000” do?

A

Sets a filter for any TCP packet with 4000 as a source or destination port.

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

what will filter “tcp.flags.reset == 1” do?

A

Displays all TCP resets.

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

What will filter “http.request” do?

A

Displays all HTTP GET requests.

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

What will filter “tcp contains reviews” do?

A

Displays all TCP packets that contain the word “reviews”.

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

What will filter “!(arp or icmp or dns)” do?

A

Masks out arp, icmp, dns or whatever other protocols may be background noise allowing to focus on traffic of interest.

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