0
0
Cybersecurityknowledge~20 mins

Wireshark packet capture basics in Cybersecurity - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Wireshark Packet Capture Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📋 Factual
intermediate
1:00remaining
What is the primary function of Wireshark?

Wireshark is a popular tool used in cybersecurity. What is its main purpose?

ATo capture and analyze network packets in real time
BTo encrypt network traffic for secure communication
CTo block unauthorized network access
DTo scan computers for viruses and malware
Attempts:
2 left
💡 Hint

Think about what Wireshark does with data moving through a network.

🧠 Conceptual
intermediate
1:30remaining
Which filter would you use to see only HTTP traffic in Wireshark?

You want to view only web traffic using Wireshark. Which display filter should you apply?

Atcp.port == 80
Budp.port == 53
Cicmp
Dtcp.port == 443
Attempts:
2 left
💡 Hint

HTTP usually uses a specific TCP port number.

🔍 Analysis
advanced
1:30remaining
What does the 'No. of packets' column represent in Wireshark capture summary?

In Wireshark's capture summary, what does the 'No. of packets' column indicate?

AThe number of packets sent by the selected device only
BThe total number of packets captured in the entire session
CThe number of packets in the current filtered view
DThe number of packets dropped during capture
Attempts:
2 left
💡 Hint

Consider what the summary shows before applying any filters.

Reasoning
advanced
2:00remaining
Why might some packets be missing in a Wireshark capture?

During a capture, you notice some expected packets are missing. What is a likely reason?

AWireshark automatically deletes packets after 10 seconds
BThe network cable was unplugged during capture
CThe packets were encrypted and cannot be captured
DThe capture interface was not set to promiscuous mode
Attempts:
2 left
💡 Hint

Think about how network interfaces receive packets not addressed to them.

Comparison
expert
2:30remaining
Which statement correctly compares capture filters and display filters in Wireshark?

Choose the option that accurately describes the difference between capture filters and display filters in Wireshark.

ACapture filters are applied after capture; display filters are applied during capture
BDisplay filters limit which packets are saved during capture; capture filters only hide packets after capture
CCapture filters limit which packets are saved during capture; display filters only hide packets after capture
DBoth capture and display filters work the same way and can be used interchangeably
Attempts:
2 left
💡 Hint

Consider when each filter type is applied in the capture process.