
Origin Protection with AWS WAF & Shield
Amazon has been steadily improving their CloudFront CDN offering with WAF (Web Application Firewall) capabilities. This is a great feature, however it's ineffective if origin servers can be attacked directly, bypassing CloudFront. With a little extra work, access to the origin can be restricted.
The solution is to add a secret header value at the edge, and configure the load balancer to block requests that are missing this secret. This is necessary because CloudFront distributions are not associated with security groups, nor are fixed IPs available (unlike higher-priced competitors like Kona Site Shield).
Configure CloudFront
First, navigate to Cloudfront → <DISTRIBUTION> → Behaviors → Default → Edit:
Make sure Redirect HTTP to HTTPS is checked. When combined with the Match viewer policy below, this will make sure the secret is always transmitted over HTTPS.
Repeat this step for for all behaviors.
Now add the header secret to the CloudFront distribution. Navigate to Cloudfront → <DISTRIBUTION> → Origins → Edit, and configure the origin with a custom header. The header value should be a long random string.
Configure WAF Rules
Visit Services → WAF and Shield → String Matching → Create condition. Create a string condition that matches the header that was set in the previous step.
Next visit Web ACLs → Create web ACL. Choose the region, and associate the ACL with the load balancer. Add a rule using the string match condition from the previous step. Then, set the default rule to block all. The finished ACL should look like this:
Configure the app server security group
Last, configure the security group to only allow traffic from the load balancer, plus any other trusted networks. ICMP Destination Unreachable should also be allowed to make sure jumbo packets and MTU discovery works correctly.
Test it out
Try visiting the the address of the app servers, and load balancer directly. The app server should time out, and the load balancer should return a 403, while the site should continue operating normally via CloudFront.
That's it!
A few variations are possible; this can be done without an ALB or HTTPS, but both variations would weaken security. ALBs can take a lot of abuse, and without them, the app server would have to implement the header block rule. For me, it's worth the extra few bucks, even if the load balancer isn't otherwise needed.
Comments
You begin this article with the importance of securing communication between Cloudfront and the ALB however you fail to explain that it'll need it's own DNS entry on your own (owned by you) domain in order to have a valid certificate on it else Cloudfront fails to communicate with the origin. The image at the point where you show a direct request doesn't work has this but it isn't explained.
Also, I would set the Origin Protocol Policy to HTTPS-Only rather than Match-Viewer as it should only ever be HTTPS.
Otherwise, great article. Amazon should really document this process themselves instead of only mentioning signed URLs and signed cookies. Thank you.
Fri, 07/06/2018 - 00:01
Robert, thanks for pointing that out! In our setup, the ALB shares the same cert with the CloudFront edge. It doesn't need a unique cert, nor extra DNS record, as long as your distribution behaviors are configured to pass the HOST
header.
Thu, 03/21/2019 - 12:10
Hello Dylan,
The part where you said "...configure the security group to only allow traffic..." This is referring to the security group of which component?
Wed, 05/09/2018 - 09:47