What are the best practices in Django to detect and prevent DoS attacks... Are there any ready to use apps or middleware available which prevents website access and scan through bots?

link|improve this question

59% accept rate
2  
I guess you should just code by django standards, and use the latest version, also ddos attacks usually exploits the webserver/machine and not the web-framework involved in creating the website. – BrainStorm Jul 31 '11 at 14:24
Thanks you very much... – Software Enthusiastic Aug 1 '11 at 9:43
feedback

2 Answers

You might want to read the following 3 questions over on Security Stack Exchange.

A quick description of the problem:

Possible solutions and limitations of attempting mitigation in software:

And a bit of discussion around commonly used anti-DDoS techniques at the perimeter, rather than the application:

It is really difficult to do at the application level - the earlier in the path you can drop the attack, the better.

link|improve this answer
Thanks Rory.... – Software Enthusiastic Aug 1 '11 at 9:36
feedback

I'd probably aim to deal with DoS at a higher level in the stack. If you're using Apache, take a look at mod_security. Or maybe a nice set of firewall rules.

Edit: Depending on your situation, you also might want to take a look at a caching server like Varnish. It's a lot harder to DoS you, if the vast majority of hits are served by the lightning quick Varnish before they even reach your regular web server.

link|improve this answer
1  
Thank you very much Eli.... – Software Enthusiastic Aug 1 '11 at 9:37
You're welcome. – BrainStorm Aug 1 '11 at 16:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.