Question

Difficulty: MediumNetwork and Wireless Attack Indicators

During a network security monitoring session, an analyst receives alerts indicating that an enterprise layer 2 switch is broadcasting unicast frames meant for a specific server out of all active switch ports. Inspection of the switch switchport log shows a single interface generating thousands of inbound Ethernet frames per second, each containing unique, rapidly changing source MAC addresses. Which of the following network attacks is taking place?

  1. MAC flooding designed to overflow the switch CAM table and force traffic to fail open like a hubAnswer
  2. B
    ARP cache poisoning intended to corrupt the default gateway mapping on local endpoint ARP tables
  3. C
    VLAN hopping utilizing double tagging to bypass VLAN trunking security boundary configurations
  4. D
    DNS spoofing attempting to redirect client web traffic to an unauthorized external IP address

Answer

The attack taking place is MAC flooding designed to overflow the switch CAM table and force traffic to fail open like a hub.
The correct answer identifies MAC flooding. In a MAC flooding attack, an adversary sends a massive volume of Ethernet frames with randomized source MAC addresses to a switch port. This rapidly exhausts the finite storage space in the switch Content Addressable Memory (CAM) table. Once full, the switch can no longer store valid MAC-to-port mappings and reverts to a fail-open mode, broadcasting all incoming unicast frames out of every active port, which allows the attacker to capture traffic intended for other endpoints.

Step-by-Step Solution

1
Analyze the observed technical indicators in the switch logs.
The log shows a single port transmitting thousands of frames per second with randomized source MAC addresses.
Rapidly generated unique MAC addresses target the limited storage capacity of the switch's Content Addressable Memory (CAM) table.
2
Evaluate the resulting switch behavior.
The switch is broadcasting unicast frames out of all physical ports.
When the CAM table becomes completely full, the switch cannot learn new MAC entries and defaults to broadcasting (failing open) so traffic can still reach its destination, allowing sniffing of unicast traffic.
3
Match the observed symptoms to the correct attack classification.
MAC flooding (CAM table overflow).
This behavior is the classic signature of a MAC flooding attack.

Key Concept

MAC Flooding and Switch Fail-Open Behavior
Rate this question