A municipal transit authority operates a real-time vehicle tracking API endpoint on AWS. The API is deployed behind an Application Load Balancer (ALB) and receives rapid HTTP requests from commuter mobile applications. The authority needs to protect the infrastructure from volumetric Layer 3/4 DDoS attacks and prevent clients from overwhelming the backend EC2 instances with high-rate Layer 7 HTTP GET requests. Which combination of AWS configurations should a solutions architect implement to meet these security requirements? (Select TWO.)
- Enable AWS Shield Advanced on the Application Load Balancer to provide automatic mitigation against infrastructure-layer volumetric attacks.Answer
- Deploy AWS WAF with a rate-based rule associated with the Application Load Balancer to block clients exceeding request thresholds.Answer
- CConfigure stateful Network Access Control Lists (NACLs) at the subnet boundaries to automatically identify and block IP addresses generating excessive HTTP traffic.
- DRely on AWS Shield Standard to inspect incoming application-layer payloads and automatically block SQL injection and HTTP flood exploits.
- EImplement Security Groups on the backend EC2 instances with ingress rules set to dynamically block individual source IP addresses that send rapid requests.
Answer
Enable AWS Shield Advanced on the Application Load Balancer to protect against infrastructure-layer volumetric attacks, and deploy AWS WAF with a rate-based rule associated with the Application Load Balancer to block clients exceeding HTTP request rate thresholds.
Implementing AWS Shield Advanced on the Application Load Balancer provides dedicated protection against volumetric Layer 3 and Layer 4 infrastructure attacks. Simultaneously, associating AWS WAF with a rate-based rule on the Application Load Balancer dynamically mitigates Layer 7 HTTP flood attacks by tracking request rates from individual client IPs and blocking those that exceed safe thresholds.
Step-by-Step Solution
Key Concept
Edge protection requires a layered approach: AWS Shield Advanced for L3/L4 volumetric protection, and AWS WAF with rate-based rules for L7 application-layer mitigation.
Estimated Time:2m 0s