Driving around a DDOS attack

This week the plan was to work mostly on the ProcessWire core and a client project, but last Saturday we started getting hit with heavy traffic at processwire.com, and it soon became an apparent full blown DOS/DDOS attack.

It continued for half the week till things were back under control. If you visited our forums earlier this week, you likely noticed things responding slowly or even with an error. This post describes how we got it back under control and what was learned along the way.

Unlike most posts here, this one isn’t really about ProcessWire per se, as the target appeared to be our IP.Board forums rather than our software or main site. But had it been the main site or software, the strategies and solutions would have been the same.

Target and traffic

I’m not sure anyone was intentionally targeting the ProcessWire site, and can’t think of any reason why they would want to. The traffic was instead targeting our IP.Board forums, which were serving more than a thousand (sometimes more than 1500) user sessions at a time. We’ve got a nice and fast AWS server (load balanced no less), but there are limits to how many requests you can deliver at a time, regardless of the server. This was really slowing things down and in some cases preventing the server from responding at all. No fault of IP.Board, which performs very nicely and securely, but this is just a lot of traffic.

Aggressive bots from China

In comparing the traffic hitting the server with the traffic that Google Analytics was reporting, it became clear that much of this was not legitimate user traffic and instead was bot traffic. It appears to have been a widely distributed denial of service attack (DDOS), originating mostly from countless different ISPs throughout China.

There were seemingly millions of pageviews where there are usually thousands. And we were seeing more than 10,000 unique IPs hitting the server every hour multiple times, with such a broad range that it wasn’t feasible to block them at the IP level. Blocking at the regional level wasn’t a good option either, as we have a lot of legitimate users in China as well. Server load was often over 70.0 (and sometimes higher), when it is usually under 1.0.

First try: upgrading and optimizing

Initially, rather than trying to block the traffic, we instead focused on optimizations to the server and IP.Board software. There are a lot of optimizations available in IP.Board that we hadn’t yet put to use, and so it seemed like the right time to do it. Here’s what we did:

  • Installed memcached on the server and have configured IP.Board to use it.
  • Enabled template disk caching and sidebar, header and footer block caching (5 mins).
  • Page output seen by guests of the forums is now running on a 10 minute cache.
  • Setup IP.Board to store and deliver all of its file assets from Amazon S3.
  • Updated the forums to use ImageMagick rather than GD for all image features.

After doing all of that, it seemed to be helping. But apparently recognizing the recovery, it seemed like the bots started hitting it even harder. A few hours later, we were once again back where we started with the server regularly reaching a denial of service state.

Second try: blocking everyone (except logged-in users)

In order to get things back under control, I hacked together a quick PHP script to make the forums only respond to already logged-in users. That quickly brought things under control. Despite all the bots continuing to hit the server, the overhead of the forums trying to serve them was gone. But this wasn’t a solution to leave in place for long, as most of our real forum traffic isn’t logged in, and we were denying that traffic (not to mention the legitimate bots like Googlebot).

Looking for DDOS traffic patterns

Not really certain what to do next, I just sat there watching the live Apache log of requests, looking for patterns (good old tail -f access_log). I followed the URL paths that the apparent bots took and mirrored them in my browser. The bots spent a lot of time hitting URLs that most legitimate users rarely did—some for IP.Board features I never even knew about. More often than not, they were URLs that were apparently time consuming for IP.Board to render. Perfect targets for a denial of service attack.

Whether this particular attack was designed to exploit time consuming URLs in IP.Board, or whether the bots monitored render times before figuring out what to attack, I’m not certain. But they clearly had patterns, and those patterns weren’t consistent with those followed by our legitimate traffic. Once that became apparent, it was possible to more easily identify the bot requests and block a large percentage of them with custom PHP scripts.

Third try: blocking identified patterns

After spending a lot of time looking at traffic patterns, we blocked traffic that matched those patterns. These were largely URLs with query strings focused on rarely used features. After about a day of delivering a combination of “403 Unauthorized”, “404 Not Found”, and “503 Service Not Available” http error codes to these bots (depending on the case and URL), they apparently gave up and moved on to other things. Though I’m guessing they will be back at some point. So rather than getting woken up in the middle of the night by server alarms, I thought I’d put in a permanent solution this time.

Scripting a solution

The final solution ended up as a custom PHP script that runs before every IP.Board request, monitors the server load, and starts blocking URLs according to the load and session. It took about a day to build, but long term will hopefully prevent the issue from occurring again. Here’s how it works. If the server load is within normal limits, it doesn’t block anything. But if the server load starts to climb, then it starts blocking traffic from user agents that we saw on a lot of the bots (maybe 30-40% of them), like those mentioned in the next section. As load climbs higher, it starts looking closer at what is being accessed rather than just what is accessing it, and begins to block clients accessing URLs that fit a pattern.

Problematic user agents

Following are strings found in user agents of what we found to be bots (or unknowing users) contributing to the DDOS attack. Most of these aren’t technically bot user agents, but rather user agent strings used by specific browsers; but browsers that aren’t commonly seen at processwire.com, except during an attack. So they don’t necessarily indicate illegitimate traffic, but my experience here was that we weren’t seeing any legitimate traffic from these user agents (though I could be wrong).

  • LieBaoFast
  • Mb2345Browser
  • MicroMessenger
  • MJ12bot
  • Kinza
  • QQBrowser and MQQBrowser
  • among many others

Just blocking these user agent strings isn't a solution, but it's an easy thing to do and a good place to start.

Bots that aren't bad, but are still pests

We also start blocking the bots that aren’t necessarily malicious, but that can be annoying pests that are doing SEO research for other companies. These are from (as far as I understand) companies using your server resources to research and index your content for other companies, rather than you or your users. These bots aren’t bringing any value to us, and sometimes they aren’t honoring our robots.txt crawl-delay, so if we’ve got any kind of server load, then these SEO bots are blocked too. To be clear, these bots aren’t responsible for any DDOS activity, but they certainly aren’t helping matters when load starts to climb, so it doesn't hurt to stop delivering traffic to them at that point. Some examples of these bots:

  • AhrefsBot
  • DotBot
  • Semrushbot
  • Seokicks
  • Seoscanners
  • and others

The worst bots probably don't identify themselves

If the load continues to climb, even after blocking bot user agents (the easiest way), that’s not really a surprise — many bots do their best to look like a regular browser when it comes to the user agent string. These bots are coming from thousands of seemingly random different IP addresses, and we can’t identify and filter them by IP or by user agent. At this point we consider what URLs they are visiting and whether the pattern is consistent with real user traffic. There’s always potential for false positives here, so we don’t start blocking these until server load reaches a moderate level. But assuming that level is reached, we start delivering an error page to traffic that looks suspicious. The error page basically asks them to login if they want to continue with they are doing.

High load situations

If server load reaches a higher load level, where things are starting to slow down, then at that point it shuts down many time-consuming [to render] IP.Board URLs. You can still browse the forums, topics and threads, and you can still sign-up or login, but many functions are disabled at that point. If load goes even higher, then most forum URLs are shut down for all but logged in users, and the forum asks you to either sign-up for an account or login in order to proceed. As soon as the load begins to drop, then the available features and URLs likewise begins to open up automatically.

Conclusion and special thanks

This really isn’t what I wanted to work on this week, but the circumstances made it necessary. We can’t afford to have the support forums (and all that accompanies it) inaccessible for days on end. While it sounds like a big pain, it actually was pretty fun, and we sure managed to get some nice upgrades in the process. Not to mention, I learned a lot.

This post described my experience with the issue this week, but I wasn’t the only one that worked on it. A huge thanks to Jan who collaborated with me on much of it during multiple days this week. He also added another node to our load balancer, installed memcache on the server, optimized PHP and MySQL settings, and was responsible for setting up and moving all of our static forum assets over to Amazon S3, among other things. Pete (forum administrator) also helped out a lot this week, helping to look for bottlenecks and potential optimizations, and installing a forum upgrade, among other things. It was a real team effort.

By the way, ProcessWire 3.0.150 is now on the dev branch. Not much new was added in terms of commits this week (per the contents of this post), but for details on what’s been added, see ProcessWire Weekly #298 and #299 as well as this post from last week in the forum. (It looks like the 300th issue of ProcessWire Weekly is next!)

Comments

  • jacmaes

    jacmaes

    • 4 years ago
    • 22

    Great read. Any reason why you did not opt for CloudFlare, which was precisely designed for this, and presumably would have stopped the attack in a matter of minutes?

    • ryan

      ryan

      • 4 years ago
      • 51

      We're lucky in that the server resources we had were adequate to handle the attack. We were able to mitigate it by editing files and adding custom scripts. For something of the scale where not even Apache (sans PHP) could keep up with it, then at that point something like CloudFlare would probably be necessary. As it is, we do have the resources and I value what we learned in working around it — I'm fascinated by this stuff, so if anything I'm glad for the experience. CloudFlare may be a good solution for people that need a more turnkey solution for such an attack and don't mind what it involves. For us, I'd prefer not to use a service like CloudFlare unless it was absolutely necessary. I actually have used it in the past and with other clients, and if you have concerns about such attacks, it seems like a good route to consider.

  • Teppo

    Teppo

    • 4 years ago
    • 12

    Thanks for sharing this, Ryan — really interesting stuff, appreciate the write-up!

    I've had to deal with a few attacks back in the days, but luckily nothing as large scale and long-lasting as this one. Setting up fail2ban and mod_evasive server-side (and of course running ProCache in front of all my PW sites) has been quite enough to fend off most issues. In fact most attacks have been so low key that even before I had automated protection in place, blocking a few IPs usually did the trick.

    Regarding what @jacmaes pointed out above, I've also opted to go with Cloudflare for weekly.pw. So far it's been smooth sailing (basically just a few cases of having to clear cache manually via their GUI) and the results have been solid. Admittedly for me one reason for this is that I need to keep my costs low, and off-loading all the heavy lifting to them is a part of that.

    Anyway, I know you've got beefy servers behind the scenes, but I'd definitely recommend keeping CF in mind :)

  • Jay

    Jay

    • 4 years ago
    • 11

    Very interesting read. I am currently learning PHP and would be interested in how you detect server load with a script? Thanks!

    • ryan

      ryan

      • 4 years ago
      • 11

      You use this PHP function: sys_getloadavg() - https://www.php.net/manual/en/function.sys-getloadavg.php

  • Sloth

    Sloth

    • 4 years ago
    • 44

    Well this is what happens when you rely on commercial or popular software like IP.Board for your site. PW has all the tools to create a basic and secure forum and I have seen many requests on your IP.Board forum for a PW forum solution. But it seems to be pushed aside.

    • ryan

      ryan

      • 4 years ago
      • 22

      Any http accessible software is vulnerable to this kind of attack. A forum built in PW would be just as vulnerable to a DoS attack as IP.Board, though obviously less likely to be a target. Even serving a static index.html is vulnerable if the DDOS has enough resources behind it. Whether a software is commercial or not, I don't know how that would matter. But you are totally right that a popular software is always more of a target. Just watching live log files, there are always requests looking for WordPress vulnerabilities, seemingly nonstop at any time of the day. That's one of the downsides of popularity when it comes to software. Though I should also clarify, a DoS attack isn't about a software vulnerability unless it's amplified by some bottleneck in the software, which doesn't seem to have been the case here.

 

PrevProcessWire 3.0.148 new master

6

Today we have a new master version released, version 3.0.148! The last master version was 3.0.123, so there are 25 new versions worth of upgrades, fixes and optimizations in this new master version, relative to the previous. In this post we’ll take a closer look at what’s new, how to upgrade, and more. More 

NextProcessWire 3.0.151 core updates

2

This week we’ve got a couple of really useful API-side improvements to the core in 3.0.151, among other updates. First we’ll take a look at a new $config setting that lets you predefine image resize settings, enabling you to isolate them from code that outputs them, not unlike how you isolate CSS… More 

Latest news

  • ProcessWire Weekly #518
    The 518th issue of ProcessWire Weekly brings in all the latest news from the ProcessWire community. Modules, sites, and more. Read on!
    Weekly.pw / 13 April 2024
  • ProFields Table Field with Actions support
    This week we have some updates for the ProFields table field (FieldtypeTable). These updates are primarily focused on adding new tools for the editor to facilitate input and management of content in a table field.
    Blog / 12 April 2024
  • Subscribe to weekly ProcessWire news

“Yesterday I sent the client a short documentation for their ProcessWire-powered website. Today all features already used with no questions. #cmsdoneright—Marc Hinse, Web designer/developer