Live data from Hacker News

Reddit is currently experiencing a malicious DDoS attack

twitter.com

81–89 of 89 posts

Re: Reddit is currently experiencing a malicious DDoS attack

#81

Earlier quoted context omitted.

Non-malicious DDOS attacks might be considered those where the traffic is genuine, like a normal website reaching the frontpage of reddit or hn.

By definition, DDOS, are malicious no? Otherwise, the site is just having high traffic that it cannot handle. If my blog goes down after being on the front page of HN, is that a DDOS?

Was Service Denied? Was the cause Distributed?

Re: Reddit is currently experiencing a malicious DDoS attack

#82
post #40

Earlier quoted context omitted.

I would think it is a malicious attack in response to Reddit incorrectly identifying and popularizing the idea that Sunil Tripathi was one of the Boston Marathon bombers.

Unlikely, why would someone retaliate? Who on Tripathi's side has such power? Right now we are not even sure if the attack is related to boston events at all.

The LOIC does.

Re: Reddit is currently experiencing a malicious DDoS attack

#83

Earlier quoted context omitted.

But I wouldn't have learned a cool new latin proverb.

Although it should be noted that the Latin itself is a translation, since this quote is attributed to Socrates and would have originally been in Greek.

According to Wikipedia it's (incorrectly) attributed to the Socrates character in Plato's Republic. Although a related idea is discussed in that book, the saying itself is attributed to Roman poet Juvenal, which was discussing marital affairs.

Re: Reddit is currently experiencing a malicious DDoS attack

#84
post #49

Earlier quoted context omitted.

Can you show me some examples of abhorrent behavior? In the few reddit threads I skimmed about the bombing everyone was surprisingly mature, especially when pointing out 'suspicious' people.

isn’t ‘Pointing out ‘suspiciuos’ people’ on a public forum rather immature by itself?

Not in my opinion. They were just people trying to catch the bombers. No one was jumping to conclusions from what I saw (maybe some did but they were downvoted further down than I scrolled), rather they were just pointing out scenes that looked suspicious to them so that the police could investigate further. While there have definitely been cases in the past where a line has been crossed, I don't believe that to have happened this time.

Re: Reddit is currently experiencing a malicious DDoS attack

#85
post #66

Earlier quoted context omitted.

"Who watches the watchmen" would have been simpler and spared me a google search.

But then how would we know that facorreia is smarter than we are?

awesome fodder for a reddit comment chain, let's continue it there

Re: Reddit is currently experiencing a malicious DDoS attack

#86
post #80

Earlier quoted context omitted.

isn’t ‘Pointing out ‘suspiciuos’ people’ on a public forum rather immature by itself?

For the most part, they were pointing out suspicious pictures , in the wake of a nearby large-scale criminal event. Not suspicious people by name.

What were the pictures of?

Would the pictures, or the people in the pictures, be suspected of being bombers? Were the police looking for pictures or for people in pictures?

Re: Reddit is currently experiencing a malicious DDoS attack

#87

Earlier quoted context omitted.

> I hope this is a retaliation for the abhorrent behaviour of reddit users You don't like vigilantes, but you hope vigilantes are punishing reddit users?

Quis custodiet ipsos custodes?

Quidquid latine dictum sit, altum sonatur.

Re: Reddit is currently experiencing a malicious DDoS attack

#88
post #43

As opposed to a non-malicious DDOS attack? Sorry about the snarky remark, but the headline does feel a tad redundant.

"Typical HN Top-poster - up in arms about one point they care about, misses entire point of article." https://news.ycombinator.com/item?id=4780475

Don't confuse missing the point of the article with not caring about the rest of the article.

I had a chuckle too about "malicious". A DDoS attack is a DDoS attack. It's like hearing about a "malicious stabbing."

But whatever, there are DDoS attacks every day on someone.

Re: Reddit is currently experiencing a malicious DDoS attack

#89
post #24

Is there a defense against DDoS attacks? CloudFlare? Incapsula? Does anyone have experience with how well these solutions work?

In ultra-simple terms you need to have a network capacity greater than the attacker and to identify the attack requests and discard them whilst still honouring valid requests. That is basically what CloudFlare is. Add in things like caches to prevent even valid requests from getting to the backend (so you've now added a CDN), and many peers to your network so that an attacker cannot saturate one or two peers... and y…

This is a very good explanation but there is another side to this issue. (I`m talking about HTTP DDOS)

Basically, DDoS Attacks can be (roughly) divided in 2 categories:

1. Attacks on your server (which usually target your server IP or some other part of your network infrastructure)

2. Attacks on your site (which use bots to flood your site with fake HTTP requests)

As explained above, Network attack can only be countered with strong and flexible infrastructure. The most common solution is a combination of several high-powered servers and load balancing capabilities.

HTTP DDoS attacks are trickier because they're best mitigated by visitor profiling, a technology that can help identify bots from humans and block them while still allowing providing full access to all legitimate visitors. Developing and maintaining such technology is arguably more complicated, simply because it's a software you need to create, not a hardware which you can buy.

Standard profiling solutions include CAPTCHAs and Delay Pages but these will also repel legitimate visitors. (because no one likes CAPTCHAs or waiting for 5-10 extra seconds for page load). Advanced profiling solutions use a combination of behavior and signature recognition, coupled with seamless challenges (i.e. checking for JS support).

CF and Incapsula (where I work) both handle Network DDoS in a similar manner but we have a somewhat different approach to HTTP DDoS.

And yes, while under DDoS (or even without it), dynamic resources can be the "weakest link". This is why WAFs are so important.

Post reply on HN