Nullamatix.com – DDoS Attack 12-2009

Posted 890 days ago - Security

The attack started around 03:05:07 EST on Saturday, December 12th, 2009. As far as I know, the attack is still going on. My service provider has null routed the target IP (old IP for www.nullamatix.com), at least until the attack subsides. Fortunately, Nullamatix.com is back up and running as of 14:30:00 EST on Sunday, December 13th, 2009. Here are some details of the attack.

The Involved

These IP addresses contributed to the 133MB worth of dropped firewall log data generated between 03:05:07 and 03:40:00. I imagine by 03:40, the entire pipe was filled and iptables wasn't seeing anything else to drop, hence the decline in the number of packets.

Source IP - # of Packets
140.128.64.168 - 251029
84.19.172.30 - 163157
213.74.4.160 - 135143
85.12.42.240 - 77208
72.18.196.223 - 74521
81.27.32.250 - 5685
92.48.68.32 - 1421
85.10.128.63 - 364
87.118.126.165 - 254
79.140.64.133 - 153
62.193.228.104 - 106
213.186.46.163 - 61
212.58.5.194 - 32
192.83.166.21 - 23
79.132.212.7 - 21
204.16.241.176 - 14

CIDR for The Involved

For anyone interested, here are the CIDR blocks for the involved networks:

[nullamatix.com ~]:# ip route show | sed 's/unreachable //;s/ scope.*$//' | grep -v ' dev'
140.128.0.0/13
84.19.160.0/19
213.74.0.0/16
85.12.0.0/18
72.18.192.0/20
81.27.32.0/20
92.48.64.0/18
85.10.128.0/20
87.118.64.0/18
79.140.64.0/20
62.193.192.0/18
213.186.32.0/19
212.58.0.0/19
192.83.166.0/23
79.132.192.0/19
204.16.240.0/21

Null Route The Involved

Here's how to null route these networks:

route add -net 140.128.0.0/13 reject
route add -net 84.19.160.0/19 reject
route add -net 213.74.0.0/16 reject
route add -net 85.12.0.0/18 reject
route add -net 72.18.192.0/20 reject
route add -net 81.27.32.0/20 reject
route add -net 92.48.64.0/18 reject
route add -net 85.10.128.0/20 reject
route add -net 87.118.64.0/18 reject
route add -net 79.140.64.0/20 reject
route add -net 62.193.192.0/18 reject
route add -net 213.186.32.0/19 reject
route add -net 212.58.0.0/19 reject
route add -net 192.83.166.0/23 reject
route add -net 79.132.192.0/19 reject
route add -net 204.16.240.0/21 reject

IPTable DROP The Involved

And here's how to drop incoming data from these networks with IP tables:

iptables -A INPUT -s 140.128.0.0/13 -j DROP
iptables -A INPUT -s 84.19.160.0/19 -j DROP
iptables -A INPUT -s 213.74.0.0/16 -j DROP
iptables -A INPUT -s 85.12.0.0/18 -j DROP
iptables -A INPUT -s 72.18.192.0/20 -j DROP
iptables -A INPUT -s 81.27.32.0/20 -j DROP
iptables -A INPUT -s 92.48.64.0/18 -j DROP
iptables -A INPUT -s 85.10.128.0/20 -j DROP
iptables -A INPUT -s 87.118.64.0/18 -j DROP
iptables -A INPUT -s 79.140.64.0/20 -j DROP
iptables -A INPUT -s 62.193.192.0/18 -j DROP
iptables -A INPUT -s 213.186.32.0/19 -j DROP
iptables -A INPUT -s 212.58.0.0/19 -j DROP
iptables -A INPUT -s 192.83.166.0/23 -j DROP
iptables -A INPUT -s 79.132.192.0/19 -j DROP
iptables -A INPUT -s 204.16.240.0/21 -j DROP

Feel free to ask any questions, I'll do my best to provide any information I can. Still have absolutely no idea what might have provoked such an attack.

Word Count: 573

Tags: , , ,

Click Here to Submit a Comment

Permalink / Last Modified:

Support Nullamatix.com:

See Also:

  • 04/24/2009 -- Flow Control Platform (FCP) is Pissing Me Off
    Excerpt: "Every two hours or so my servers are set to email me a summary of events and other misc. information. Some of the information is memory/cpu utilization, which processes are running, a list of listening services, which cron-jobs ran, who logged in, etc. My ..."
  • 07/25/2007 -- Old School DDoS Attacks – How Large Servers Got Pwned
    Excerpt: "/* How Large Servers are Owned via DDoS written by perator */ Every time you dial up to your ISP, your box is assigned an IP address. An IP address is a number (eg. 199.44.2.1) that identifies you on the internet. Every online computer has its ..."
  • 01/17/2010 -- New Tool: IP Range to CIDR
    Excerpt: "At least twice a week I find myself visiting ip2cidr.com, the IP to CIDR converter. Since the owner/author of the site hasn't release the source code, and I love a challenge, I developed my own version. The guys at the job find the tool useful, and after a ..."
  • 12/28/2009 -- Invalid Packets From the DoD
    Excerpt: "The firewall policies on Nullamatix.com DROP invalid connection attempts. Specifically, if an attempt to start a new tcp connection is not a syn packet, the packet is rejected. This morning I noticed a few dropped connection attempts from an unusual source, ..."

Leave a Reply