Basic Understanding
Protocol Analysis
Source and Destination
Ports and Connections
Packet Contents and Details
100

What is Wireshark used for?

To analyze network traffic and troubleshoot network issues.

100

Which protocol is primarily used for web browsing?

HTTP and HTTPS.

100

How do you find packets in Wireshark with a specific source IP address?

Use the filter "ip.src == [source IP address]"

100

What is the purpose of ports in network communications?

To differentiate between multiple applications or services running on a single device.

100

What is contained within the payload of a packet?

The actual data being transmitted, separate from the packet's headers.

200

Which of the following can Wireshark not do? 

a) Capture live packet data. 

b) Decrypt encrypted traffic without the proper keys. 

c) Create network packets.

d) Analyze captured packet data.

c) Create network packets.

200

What port does HTTPS use by default?

443

200

What does the destination IP address tell you?

It indicates the intended recipient of the packet within the network.

200

How would you identify all traffic related to SMTP in a capture?

By filtering for port 25 (e.g., "tcp.port == 25" for SMTP).

200

How can you extract files from HTTP traffic in Wireshark?

By following the HTTP stream and extracting the files manually or using Wireshark's "Export Objects" feature.

300

Which menu in Wireshark would you use to apply a display filter?

The "Filter" toolbar or the "Apply a display filter" entry box.

300

In Wireshark, how is a TCP three-way handshake identified?

By observing packets with SYN, SYN-ACK, and ACK flags

300

How can you filter for all traffic going to or from a particular subnet?

Using a CIDR notation filter, like "ip.addr == 192.168.1.0/24"

300

Which port is commonly used for SSH traffic?

22

300

What information does the "Info" column in Wireshark provide?

It provides a brief description or summary of the packet's purpose or contents.

400

True or False: Wireshark can capture packets on multiple interfaces simultaneously.

True

400

What does a "SYN" flag in TCP signify?

It indicates an attempt to establish a connection.

400

In a Wireshark capture, how can you tell if the packet was inbound or outbound?

By analyzing the packet's source and destination IP addresses in relation to the known network structure.

400

How can you filter for packets using a range of ports?

With a range filter, like "tcp.port >= 1000 && tcp.port <= 2000"

400

How can you identify packets that are part of the same TCP conversation?

By right-clicking a packet and selecting "Follow" -> "TCP Stream" or using the "tcp.stream" filter.

500

What is a "capture filter" in Wireshark?

A filter applied to limit the data captured by specifying which packets to include or exclude from the capture based on criteria such as IP addresses, protocols, and ports.

500

How can you identify DNS traffic in Wireshark?

By filtering for protocol "DNS" or port 53.

500

What is the significance of a MAC address in packet analysis?

It identifies the physical device's network interface on a local network segment.

500

In Wireshark, what does a filter for "tcp.port == 443" show?

All TCP packets using port 443, typically HTTPS traffic.

500

How does Wireshark display hexadecimal values of packet contents?

In the "Packet Bytes" pane, showing the raw data of the packet.

M
e
n
u