Wireshark: Packet Operations
This guide contains the answer and steps necessary to get to them for the TITLE room.
Table of contents
- Statistics | Summary
- Statistics | Protocol Details
- Packet Filtering | Protocol Filters
- Advanced Filtering
Statistics | Summary
- Investigate the resolved addresses. What is the IP address of the hostname starts with "bbc"?
SUMMARIES IP
Click for answer
199.232.24.81
- What is the number of IPv4 conversations?
SUMMARIES IPV4
Click for answer
a435
- How many bytes (k) were transferred from the "Micro-St" MAC address?
SUMMARIES MICRO 1
SUMMARIES MICRO 2
Click for answer
7474
- What is the number of IP addresses linked with "Kansas City"?
SUMMARIES KANSAS
Click for answer
4
- Which IP address is linked with "Blicnet" AS Organisation?
SUMMARIES BLICNET
Click for answer
188.246.82.7
Statistics | Protocol Details
- What is the most used IPv4 destination address?
Navigating to: "Statistics -> IPv4 Statistics -> Source and Destination Addresses" we can see the number of destination addresses.
Click for answer
10.100.1.33
- What is the max service request-response time of the DNS packets?
This we can find under: "Statistics -> DNS -> Service Stats". Make sure that you use the same unit as the question (i.e., seconds vs miliseconds).
Click for answer
0.467897
- What is the number of HTTP Requests accomplished by "rad[.]msn[.]com?
This can be found in the "HTTP -> Request" statistics menu. We can filter the data on our specified host name using:
```cmd http.host matches ".rad.msn.com."
Click for answer
39
Packet Filtering | Protocol Filters
- What is the number of IP packets?
Use the following display filter:
Click for answer
81420
- What is the number of packets with a "TTL value less than 10"?
Use the following display filter:
Click for answer
66
- What is the number of packets which uses "TCP port 4444"?
Use the following display filter:
Click for answer
632
- What is the number of "HTTP GET" requests sent to port "80"?
Use the following display filter:
For some strange reason the amount I found here wasn't correct. Luckily, it was just 1 shy of the correct answer.
Click for answer
527
- What is the number of "type A DNS Queries"?
Use the following display filter:
Click for answer
51
Advanced Filtering
- Find all Microsoft IIS servers. What is the number of packets that did not originate from "port 80"?
Use the following display filter:
Click for answer
21
- Find all Microsoft IIS servers. What is the number of packets that have "version 7.5"?
Use the following display filter:
Click for answer
71
- What is the total number of packets that use ports 3333, 4444 or 9999?
Use the following display filter:
Click for answer
2235
- What is the number of packets with "even TTL numbers"?
Use the following display filter:
This first converts the TTL value to a string and matches it the a regex expression looking for strings ending with an even number (hence the .*
).
Click for answer
77289
- Change the profile to "Checksum Control". What is the number of "Bad TCP Checksum" packets?
In the bottom right, we must right-click to switch to the "Checksum Profile".
Looking through the display filter expression menu for checksum
, we get a hit that we can use.
Click for answer
- Use the existing filtering button to filter the traffic. What is the number of displayed packets?
After switching to the correct profile a display filter button is visible for us to use. It uses the following filter:
Click for answer
261