Network Forensics Flashcards
What is Wireshark?
A Network Protocol Analyser.
Its Open Source.
Allows TCPDumps.
Why use Wireshark?
Troubleshoot Network Issues.
Examine security problems.
Debug protocols
Why use capture filters?
Capture filters allow you to capture traffic that matches the filter. This saves disk space and prevents packet loss.
What types of filters are there?
Capture filters
Display filter
What is the display filter for?
To tweak appearance and reduce information shown to the investigator.
What will filter “ip.addr == 10.0.0.1” do?
Sets a filter for any packet with 10.0.0.1 as either the source or destination.
What will filter “ip.addr == 10.0.0.1 && ip.addr == 10.0.0.2” do?
Sets a conversation filter between the two defined IP addresses.
What will filter “http or dns” do?
Sets a filter to display all http and dns.
what will filter “tcp.port == 4000” do?
Sets a filter for any TCP packet with 4000 as a source or destination port.
what will filter “tcp.flags.reset == 1” do?
Displays all TCP resets.
What will filter “http.request” do?
Displays all HTTP GET requests.
What will filter “tcp contains reviews” do?
Displays all TCP packets that contain the word “reviews”.
What will filter “!(arp or icmp or dns)” do?
Masks out arp, icmp, dns or whatever other protocols may be background noise allowing to focus on traffic of interest.