CND (312-38) Network Defense Simulation

Learn to identify the tools and characteristics of passive network attacks. Analyze endpoint and switch logs to detect unauthorized network traffic interception on the local area network.

Network Scenario

You are a Network Security Analyst monitoring the internal corporate LAN. You receive an alert from your Endpoint Detection and Response (EDR) system indicating a suspicious configuration change on a developer's workstation.

Simultaneously, the core switch logs show an abnormal volume of ARP replies originating from the same workstation's switchport. The attacker appears to be gathering intelligence and capturing cleartext credentials without interacting directly with the target servers.

Traffic & Logs

EDR and Core Switch Event Logs

10:45:12 SEC_EDR: CRITICAL: Promiscuous mode enabled on interface eth0 (Host: WS-DEV-04, MAC: 00:1A:2B:3C:4D:5E). 10:45:15 SW_CORE_01: %PORT_SEC-4-ARP_SPOOF: Gratuitous ARP storm detected on FastEthernet0/12. 10:45:16 SW_CORE_01: %MAC_LIMIT-4-EXCEEDED: MAC address table threshold exceeded on FastEthernet0/12. 10:50:00 SEC_SIEM: Alert - Cleartext FTP login captured in transit between 10.0.5.20 and 10.0.5.50 (Traffic duplicated to WS-DEV-04).

Analysis: The workstation interface has been placed in a state where it accepts all packets, not just those addressed to it. Combined with ARP spoofing, this forces the switch to send other users' traffic to this rogue port for interception.

Question

Which of the following is a software tool used in passive attacks for capturing network traffic?

Expert Analysis

1. What is happening in the network

An attacker (or compromised host) on the internal network has initiated a passive attack. By placing the Network Interface Card (NIC) into promiscuous mode and utilizing ARP spoofing to manipulate the switch's CAM table, the host is forcing network traffic to flow through it. The attacker is silently capturing this traffic to extract sensitive data like cleartext passwords, without alerting the legitimate sender or receiver.

2. Identify attack or behavior

This is a classic passive reconnaissance and eavesdropping technique known as Packet Sniffing. Unlike active attacks (like DoS or exploitation) that alter system resources or disrupt services, passive attacks merely observe and record data in transit.

3. Why Option D is correct

Sniffer (also known as a packet analyzer or protocol analyzer, e.g., Wireshark, tcpdump) is the specific software tool used to capture, decode, and analyze network traffic in real-time. In the hands of an attacker, it is the primary weapon for passive traffic interception.

4. Why others are wrong

  • A. Intrusion prevention system (IPS): An active defensive control that sits inline to block malicious traffic, not an offensive tool used for passive attacks.
  • B. Intrusion detection system (IDS): A defensive monitoring tool. While an IDS does capture and analyze traffic (often using a sniffing engine underneath), in the context of network attacks, it is not the tool an attacker uses to conduct a passive attack.
  • C. Warchalking: The physical act of drawing symbols on sidewalks or walls to indicate the presence and security status of an open Wi-Fi network. It is not a software tool.

5. Defensive action

To mitigate packet sniffing, Network Defenders must enforce encryption in transit (e.g., migrating from FTP/Telnet to SFTP/SSH, enforcing HTTPS, implementing IPsec). To prevent the associated local network manipulation, enable Dynamic ARP Inspection (DAI) and Port Security on switches to block rogue MAC addresses and ARP spoofing attempts. Use EDR to alert on unauthorized interfaces entering promiscuous mode.

MINI LESSON: The Danger of Passive Attacks

Passive attacks are uniquely dangerous because they generate little to no anomalous traffic of their own. Since the attacker isn't actively injecting malicious payloads, network perimeter firewalls and traditional signature-based IDS may never trigger an alert. Defense relies entirely on internal network segmentation, strong encryption protocols, and strict Layer 2 switch security.

Ready for the next challenge?

Sharpen your Network Defense skills with full practice scenarios.

Explore more CND simulations