Welcome to the CND 312-38 Network Defense Simulation. This module will train you to identify the essential open-source tools required for deep packet inspection and real-time traffic analysis during a security incident.

CND (312-38) Network Defense Simulation

Network Scenario

You are a Network Security Analyst working in the Security Operations Center (SOC). Your Suricata Intrusion Detection System (IDS) has generated a high-priority alert regarding potentially malformed packets and suspicious payload data targeting an internal legacy database server (10.0.5.50).

The IDS alert gives you the source and destination IPs, ports, and a brief signature match name. However, to verify if this is a false positive or an actual exploit attempt, you need to perform Deep Packet Inspection (DPI) and reconstruct the exact TCP stream.

You decide to connect your analyst laptop to the core switch's SPAN (Switched Port Analyzer) port. You need a tool to capture the raw network frames in real-time and dissect the protocols for manual review.

Traffic & Logs

IDS Alert Summary (Suricata Fast Log):

04/11/2026-14:22:15.109341 [**] [1:2010935:2] ET EXPLOIT Possible PostgreSQL Authentication Bypass [**] [Classification: Attempted Administrator Privilege Gain] [Priority: 1] {TCP} 192.168.44.12:49322 -> 10.0.5.50:5432

Note: The alert metadata is insufficient to confirm the attack's success. Full packet capture (PCAP) analysis is required.

Question

Which of the following tools is an open source protocol analyzer that can capture traffic in real time?
A. NetResident
B. Wireshark
C. Bridle
D. NetWitness
E. None

Expert Analysis

1. What is happening in the network

An IDS has fired an alert based on a signature match. However, signature-based IDS can suffer from false positives. To determine the ground truth, the network defender must move from high-level metadata (logs) to the lowest level of network visibility: raw packet captures (PCAP). This requires listening to the wire in real-time via a mirrored port.

2. Identify attack or behavior

The analyst is transitioning from Alert Triage to Deep Packet Inspection (DPI). This involves capturing traffic promiscuously from the network interface card (NIC) and dissecting the headers and payloads of protocols (like TCP, IP, and PostgreSQL in this scenario).

3. Why correct answer is correct

B. Wireshark
Wireshark is the industry-standard, free, and open-source graphical network protocol analyzer. It utilizes libpcap (or Npcap on Windows) to capture live network traffic down to the microscopic frame level. It features a vast library of protocol dissectors, allowing an analyst to easily follow TCP streams, decode application-layer data, and identify malicious payloads or anomalies.

4. Why others are wrong

5. Defensive action

As a Network Defender, deploying open-source tools like Wireshark is critical for ad-hoc investigations. You should:

6. MINI LESSON

IDS Alerts vs. PCAP (Ground Truth):
An IDS alert tells you "I think someone broke a window." NetFlow tells you "Someone walked to the window and left 5 minutes later." PCAP (analyzed via Wireshark) gives you the HD security camera footage of exactly what the person did, what they were carrying, and what they said. While commercial tools (NetWitness) scale this across an enterprise, open-source protocol analyzers (Wireshark, tcpdump) are foundational skills for verifying attacks at the packet level.

Ready for more Network Defense scenarios?

Enhance your defensive mindset with realistic simulations.

Explore more CND simulations