A collaborative document editing SaaS platform uses an Application Load Balancer (ALB) to distribute traffic to Amazon EC2 instances. During a high-profile product release, the platform experiences a distributed HTTP flood attack (Layer 7 DDoS) consisting of rapid, repeating requests from thousands of unique, dynamically changing IP addresses. This attack is bypassing standard network-level protections and exhausting EC2 CPU resources. The platform's operations team needs to mitigate this attack immediately and ensure the ALB only accepts traffic routed through their edge protection layer. Which combination of actions will meet these requirements with the least administrative effort?
- Deploy an Amazon CloudFront distribution in front of the Application Load Balancer. Associate an AWS WAF web ACL containing a rate-based rule with the CloudFront distribution. Configure the Application Load Balancer's security group to restrict inbound traffic using the CloudFront managed prefix list.Cevap
- BEnable AWS Shield Standard on the Application Load Balancer. Configure AWS Shield Standard to rate-limit incoming HTTP requests. Restrict the Application Load Balancer's security group to only accept traffic from the Amazon Route 53 IP ranges.
- CCreate a stateless Network Access Control List (NACL) at the subnet level for the Application Load Balancer. Add rules to block the IP addresses originating the HTTP flood. Restrict the EC2 instance security groups to allow traffic only from the ALB.
- DDeploy an Amazon CloudFront distribution in front of the Application Load Balancer. Enable AWS Shield Advanced on the CloudFront distribution. Rely on the default AWS Shield Advanced infrastructure protection to automatically drop all Layer 7 HTTP flood requests without configuring AWS WAF.
Cevap
Deploy an Amazon CloudFront distribution in front of the Application Load Balancer, associate an AWS WAF web ACL with a rate-based rule to the distribution, and configure the ALB's security group to restrict inbound traffic to the CloudFront managed prefix list.
The correct option outlines a secure architecture by placing Amazon CloudFront at the edge, leveraging AWS WAF rate-based rules to dynamically block the high-volume HTTP flood at the application layer, and securing the Application Load Balancer origin using the CloudFront managed prefix list to ensure no traffic bypasses the edge defense.
Adım Adım Çözüm
Anahtar Kavram
AWS WAF rate-based rules combined with Amazon CloudFront and ALB security group restrictions provide comprehensive Layer 7 DDoS mitigation and origin cloaking.