This article is produced by scandiweb

scandiweb is the most certified Adobe Commerce (Magento) team globally, being a long-term official Adobe partner specializing in Commerce in EMEA and the Americas. eCommerce has been our core expertise for 20+ years.

Case study: How to Protect Your Magento Store from DDoS Attacks with AWS

The Internet can be a scary place and can send ripples across your sea of peace, especially with DDoS attacks. 😉 Malicious hackers lurk around every corner, waiting for their chance to pounce at an unprotected website. To fight them off, it is important to share knowledge and we want to share from our personal experience and practices a good way to protect your Magento store from DDoS attacks using AWS.


It was just an ordinary day at the office — developers developing, managers managing, sysadmins doing nothing. All of a sudden, the eternal peace and harmony was broken with a single email starting with:

“We are the ****** and we will DDoS your network and take down your website permanently if you do not pay — 50 Bitcoin.”

Okay, well
 Challenge accepted! We blew the dust off our keyboards and started looking at what’s going on.

AWS vs DDoS: The First Wave — SYN Flood

The website in danger was a fresh Magento 2 installation running one of the oldest 2.0.x community editions. AWS setup for it was not planned for large volumes of traffic — pretty much basic setup you’d find in most Magento installations on AWS.

As can be seen from the diagram, the main bottleneck is the single Varnish instance. This infrastructure flaw allowed the attackers to run successful SYN flood DDoS on the single point of entrance:

  • There is no autoscaling for Varnish nodes. Setting up scalable Varnish cache is a separate topic that requires a set of articles, so I will not cover it here.
  • The instance is exposed to the world. Even though instance’s security group allows only connections to 80/443 TCP + SSH from whitelisted IP addresses, it is enough for SYN flood DDoS attack

Since SYN flood is aimed to exhaust server resources, the obvious solution was to put more servers between the attackers and the infrastructure. In AWS, two services are capable of providing scalable resources for this purpose: CloudFront and Elastic Load Balancer. Both accept only well-formed TCP connections, making any SYN flood or UDP reflection attacks useless.

From our previous experience in DDoS attack mitigation we knew that this wave will not be the last one and wanted to prepare for the upcoming attacks which were likely to happen on the higher OSI model levels. Therefore, as a way to mitigate this SYN flood attack we chose to configure CloudFront with WAF in “Allow all” mode to keep an eye on the traffic.

In addition to configuring CloudFront and WAF, we have also restricted access to the Varnish instance to whitelisted IPs and CloudFront only, so any future direct attack on the IP address will fail.

Updated infrastructure diagram:

AWS vs DDoS: The Second Wave – XML-RPC flood

Just as we expected, the second wave of DDoS hit the infrastructure the next morning. This time it was on the Application level — WordPress XML-RPC flood. The botnet generated over 6000 requests per minute to the application, all targeting the home page of the website.

This type of attack can be easily mitigated by updating WAF rules — as it was deployed the day before, we already had enough samples to figure out the signature and update WAF rules to block all DDoS traffic.

Conclusions on DDoS Attack Prevention with AWS

Blocking WordPress pingback flood does not mean that application level is now 100% secure. The attackers still can come back with the third wave, this time trying to mimic legitimate user behaviour. Mitigating such threat would require more advanced WAF configuration in conjunction with some AWS Lambda functions to limit request rate.

Another way to avoid downtime in the future is to remove Varnish bottleneck. More on Magento 2, autoscaling and Varnish caching in the future articles.

Even for a single instance setup, it is always a good idea to have AWS ELB or CloudFront in front of it and restrict connections to the EC2 instances only to certain IP addresses. With the scale and resources, AWS services can absorb any low-level DDoS attack without breaking your budget.

Adding CloudFront to the infrastructure setup not only improved the website security and performance, but also created new room for improvement: after the WordPress installation is fixed to support full-https pages, Varnish server can be removed and completely replaced by caching CloudFront distribution.

Has your store suffered from malicious attacks? Do you have some interesting experiences to share? Or perhaps you’re interested in Scandiweb’s services? Drop us a line at [email protected] and let’s talk or check out our service page!

Related articles:

Need help with your eCommerce?

Get in touch for a free consultation to discuss your business and explore how we can help.

Your request will be processed by

If you enjoyed this post, you may also like