CND (312-38) Network Defense Simulation
Welcome to the Network Defense Simulation. In this module, you will analyze host-based telemetry and network traffic to identify silent, passive threats operating within your broadcast domain. Learn to differentiate defensive monitoring from offensive eavesdropping.
Network Scenario
You are a Network Security Analyst monitoring an internal subnetwork used by system administrators. This legacy subnet still relies on several unencrypted protocols for internal file transfers and router configurations.
Your Endpoint Detection and Response (EDR) platform generates a low-level alert for a compromised analyst workstation (10.0.8.45). The alert indicates anomalous network interface behavior. To understand the risk, you review the host telemetry and a sample of the network traffic captured during the incident. The attacker appears to be passively collecting sensitive data traversing the local switch.
Traffic & Logs
Question
Expert Analysis
1. What is happening in the network
An attacker has compromised an internal workstation and placed its Network Interface Card (NIC) into promiscuous mode. By doing so, the attacker's machine is silently capturing all frames broadcasted or flooded across the local switch segment. As shown in the PCAP snippet, the attacker successfully harvested cleartext FTP and Telnet credentials passively.
2. Identify attack or behavior
This is a classic Passive Eavesdropping / Network Sniffing attack. The attacker is not injecting traffic, spoofing MAC addresses (yet), or disrupting services; they are simply listening to traffic that arrives at their network interface.
3. Why correct answer is correct
C. Sniffer is correct. A sniffer (like Wireshark, tcpdump, or tshark) is a tool used to capture and log network traffic passing over a digital network. In the context of an attack, it is considered a passive tool because it only reads the data and does not modify or inject packets into the stream.
4. Why others are wrong
- A & B (IPS / IDS): While an IDS/IPS captures network traffic for analysis, they are defensive security controls, not offensive attack tools.
- D (warchalking): This is a physical reconnaissance technique where symbols are drawn (in chalk) in public spaces to indicate the presence and security status of an open wireless network. It is not a tool for capturing traffic.
5. Defensive action
Because passive sniffing generates no anomalous network traffic of its own, it is incredibly difficult to detect at the network layer. The primary defense is Encryption. If all internal traffic uses strong cryptography (e.g., SSH instead of Telnet, SFTP instead of FTP, HTTPS instead of HTTP), the captured PCAP is useless to the attacker. Secondarily, Host-based Intrusion Detection Systems (HIDS) or EDR should be configured to alert anytime an interface enters promiscuous mode unexpectedly.
MINI LESSON: The Mechanics of Passive Sniffing
- Traffic Pattern Recognition: Passive sniffing leaves almost zero footprint on the wire. The only network-level indicator might be a lack of outbound DNS/HTTP requests from a host that is heavily receiving data.
- Protocol Behavior (Promiscuous Mode): By default, a NIC drops any frames not addressed to its specific MAC address or the broadcast address. Promiscuous mode overrides this, forcing the NIC to pass every received frame up to the operating system's packet capture facility (like libpcap).
- Detection vs Prevention: You cannot effectively "prevent" passive sniffing on shared media. You can only render the sniffed data useless via End-to-End Encryption (Defense-in-Depth).
- Hubs vs Switches: On legacy hubs, all traffic is broadcast to all ports. On modern switches, traffic is isolated by MAC tables. To passively sniff a switch, the attacker usually has to escalate to an active attack (like ARP Spoofing) to force the switch to send them other people's traffic, or they must compromise a device physically connected to a SPAN/Mirror port.
Ready for the Real Exam?
Explore more CND simulations and master network defense.
Explore more CND simulations