Best practice against password-list-attacks with webapplications - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T22:05:07Zhttp://stackoverflow.com/feeds/question/457727http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/457727/best-practice-against-password-list-attacks-with-webapplications3Best practice against password-list-attacks with webapplicationsStefan2009-01-19T14:24:53Z2009-01-30T06:41:56Z
<p>Hello,</p>
<p>i'd like to prevent bots from hacking weak password-protected accounts. (e.g. this happend to ebay and other big sites)</p>
<p>So i'll set a (mem-) cached value with the ip, amount of tries and timestamp of last try (memcache-fall-out).</p>
<p>But what about bots trying to open any account with just one password. For example, the bot tries all 500.000 Useraccounts with the password "password123". Maybe 10 will open.</p>
<p>So my attempt was to just cache the ip with tries and set max-tries to ~50. The i would delete it after a successful login. So the good-bot would just login with a valid account every 49 tries to reset the lock.</p>
<p>Is there any way to do it right?
What do big platforms do about this?
What can i do to prevent idiots from blocking all users on a proxy with retrying 50 times?</p>
<p>If there is no best practice - does this mean any platform is brute-forceable? At least with a hint on when counters are resetted?</p>
<p>Thanks in advance,</p>
<p>Stefan</p>
http://stackoverflow.com/questions/457727/best-practice-against-password-list-attacks-with-webapplications/457736#4577363Answer by Peter for Best practice against password-list-attacks with webapplicationsPeter2009-01-19T14:27:38Z2009-01-19T14:27:38Z<p>There was a relatively good article on <a href="http://www.codinghorror.com/blog/archives/001206.html" rel="nofollow">Coding Horror</a> a few days ago.</p>
http://stackoverflow.com/questions/457727/best-practice-against-password-list-attacks-with-webapplications/457739#4577395Answer by Steve Losh for Best practice against password-list-attacks with webapplicationsSteve Losh2009-01-19T14:27:53Z2009-01-19T14:27:53Z<p>Some sites give you maybe two or three tries before they start making you enter a captcha along with your username/password. The captcha goes away once you successfully log in.</p>
http://stackoverflow.com/questions/457727/best-practice-against-password-list-attacks-with-webapplications/457751#4577515Answer by MiniQuark for Best practice against password-list-attacks with webapplicationsMiniQuark2009-01-19T14:29:48Z2009-01-19T14:29:48Z<p>I think you can mix your solution with captchas:</p>
<ol>
<li>Count the number of tries per IP</li>
<li>In case there are too many tries from a given IP address within a given time, add a <a href="http://fr.wikipedia.org/wiki/Captcha" rel="nofollow">captcha</a> to your login form.</li>
</ol>
http://stackoverflow.com/questions/457727/best-practice-against-password-list-attacks-with-webapplications/457752#4577522Answer by calebgroom for Best practice against password-list-attacks with webapplicationscalebgroom2009-01-19T14:30:12Z2009-01-19T14:30:12Z<p>While the code is focused on Django there is some really good discussion on the best practice methods <a href="http://simonwillison.net/2009/Jan/7/ratelimitcache/" rel="nofollow" title="Rate limiting with memcached">on Simon Willison’s blog</a>. He uses memcached to track IPs and login failures.</p>
http://stackoverflow.com/questions/457727/best-practice-against-password-list-attacks-with-webapplications/457753#4577531Answer by Bill the Lizard for Best practice against password-list-attacks with webapplicationsBill the Lizard2009-01-19T14:30:40Z2009-01-19T15:17:47Z<p>You could use a <a href="http://www.microsoft.com/protect/yourself/password/checker.mspx" rel="nofollow">password strength checker</a> when a user sets their password to make sure they're not using an easily brute-forced password.</p>
<p>EDIT: Just to be clear, this shouldn't be seen as a complete solution to the problem you're trying to solve, but it should be considered in conjunction with some of the other answers.</p>
http://stackoverflow.com/questions/457727/best-practice-against-password-list-attacks-with-webapplications/457754#4577540Answer by Jason S for Best practice against password-list-attacks with webapplicationsJason S2009-01-19T14:31:02Z2009-01-19T14:31:02Z<p>You're never going to be able to prevent a group of bots from trying this from lots of different IP addresses.</p>
<p>From the same IP address: I would say if you see an example of "suspicious" behavior (invalid username, or several valid accounts with incorrect login attempts), just block the login for a few seconds. If it's a legitimate user, they won't mind waiting a few seconds. If it's a bot this will slow them down to the point of being impractical. If you continue to see the behavior from the IP address, just block them -- but leave an out-of-band door for legitimate users (call phone #x, or email this address).</p>
http://stackoverflow.com/questions/457727/best-practice-against-password-list-attacks-with-webapplications/459069#4590690Answer by Rob Williams for Best practice against password-list-attacks with webapplicationsRob Williams2009-01-19T20:37:24Z2009-01-19T20:37:24Z<p><strong>PLEASE NOTE:</strong> IP addresses can be shared among THOUSANDS or even MILLIONS of users!!! For example, most/all AOL users appear as a very small set of IP addresses due to AOL's network architecture. Most ISPs map their large user bases to a small set of public IP addresses.</p>
<p><strong>You cannot assume that an IP address belongs to only a single user.</strong></p>
<p><strong>You cannot assume that a single user will be using only a single IP address.</strong></p>
http://stackoverflow.com/questions/457727/best-practice-against-password-list-attacks-with-webapplications/494688#4946880Answer by Jens Roland for Best practice against password-list-attacks with webapplicationsJens Roland2009-01-30T06:41:56Z2009-01-30T06:41:56Z<p>Check the following question discussing best practices against distibuted brute force and dictionary attacks:</p>
<p><a href="http://stackoverflow.com/questions/479233/what-is-the-best-distributed-brute-force-countermeasure">http://stackoverflow.com/questions/479233/what-is-the-best-distributed-brute-force-countermeasure</a></p>