ExamRange SOC Lab

CSA (312-39) SOC Simulation Lab

In this lab, you will evaluate network-layer mitigation techniques. You will learn how incident responders and network engineers collaborate to defend against massive volumetric DDoS attacks.

Scenario Context

Maddison Tech is experiencing a massive inbound UDP reflection attack (NTP amplification) exceeding 40 Gbps. The edge firewall is exhausted, dropping legitimate traffic, and upstream internet links are completely saturated. The targeted asset is a single IP: 203.0.113.45. The SOC escalates the incident to the Network Operations Center (NOC) to implement an extreme edge-level block.

Security Environment

Core Router BGP Configuration Snippet (Executed by NOC during IR phase):

%ALARM-CRIT: Interface TenGigE0/0/0 utilization 99.8% (Ingress) %DDoS-DETECT: Target IP 203.0.113.45 receiving anomalous UDP/123 traffic admin@R1-Edge# configure terminal admin@R1-Edge(config)# ip route 203.0.113.45 255.255.255.255 Null0 admin@R1-Edge(config)# router bgp 65000 admin@R1-Edge(config-router)# network 203.0.113.45 mask 255.255.255.255 route-map MITIGATE_DDoS

Analyst Note: By routing the /32 IP to the Null0 interface and advertising this to the upstream ISP via BGP, all traffic to this IP is silently discarded before entering the firewall.

Question

Which of the following process refers to the discarding of the packets at the routing level without informing the source that the data did not reach its intended recipient?
Analyst Hint: When an IP is routed to a null interface, traffic goes into a "void" and disappears. The router explicitly does NOT send ICMP "Destination Unreachable" messages back to the source, preventing resource exhaustion.

Expert Insight

1. What is Happening

During a high-volume DDoS attack, firewalls and IDS/IPS appliances can become a bottleneck because they attempt to inspect or track state for every packet. To save the broader network infrastructure, engineers use routing-level mechanisms to silently discard traffic targeting the victim IP. Because it happens at the routing layer, it uses far fewer CPU resources than stateful firewall drops.

2. Why Option C is Correct

Black Hole Filtering (also known as Null Routing) is the exact process of routing traffic into a "black hole" (e.g., the Null0 interface on Cisco routers). It silently discards the packets. Unlike an active firewall REJECT rule, it does not send ICMP Destination Unreachable packets back to the source. Sending ICMP errors during a DDoS would essentially multiply the attack traffic and exhaust the router's own resources.

3. Why the Other Options are Wrong

  • A (Load Balancing): Distributes traffic across multiple servers or paths to prevent overloading a single node; it does not drop traffic.
  • B (Rate Limiting): Restricts the speed or volume of traffic (policing or shaping) but allows traffic up to a certain threshold. It is not synonymous with an absolute, silent discard of all packets.
  • D (Drop Requests): This is a generic, colloquial term, not the standard industry mechanism for routing-level silent discards.

Mini Lesson: Remotely Triggered Black Hole (RTBH)

As a SOC Analyst, you should know that local black-holing isn't enough if the attack exceeds the capacity of the internet pipe coming from your ISP. The pipe will still be full before the packets reach your edge router.

The Real-World Solution: BGP RTBH
SOC teams coordinate with NOC engineers to advertise the victim's IP address (a /32 route) via BGP to the upstream ISP using a specific BGP Community String (often 666). When the ISP receives this BGP advertisement, their routers drop the traffic before it ever crosses the link to your company.

Note: The major downside of a /32 Black Hole is that the victim IP goes completely offline (a "successful" DoS). This is a drastic measure taken to save the rest of the company's IP space.

Looking to master more SOC scenarios and exam topics?

Explore more CSA simulations