Limiting user login attempts in PHP - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T05:07:52Z http://stackoverflow.com/feeds/question/679756 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/679756/limiting-user-login-attempts-in-php 1 Limiting user login attempts in PHP artarad 2009-03-25T00:07:41Z 2009-03-25T03:52:47Z <p>Hi there, I'm seeing web apps implementing limitations for user login attempts.</p> <p>Is it a security necessity and, if so, why? </p> <p>For example: <em>you had three failed login attempts, let's try again in 10 minutes!!</em> </p> <p>thanks :)</p> http://stackoverflow.com/questions/679756/limiting-user-login-attempts-in-php/679762#679762 5 Answer by Roy Rico for Limiting user login attempts in PHP Roy Rico 2009-03-25T00:12:07Z 2009-03-25T00:12:07Z <p>The limiting of how many attempts to be made on a website are to prevent brute force (automated) attacks your site. If you don't limit these attempts, a hacker can set up a script to keep guessing passwords until it finds one, and this may impact the availability of your web server.</p> <p>Typically, you may want to time the user out (10 minutes as you mentioned) after 3 attempts, and lock them out after 6 or 9 consecutive repeated attempts, forcing the user to contact you in order to unlock their account. This is put into place because someone can modify their scripts to adjust your timeout.</p> http://stackoverflow.com/questions/679756/limiting-user-login-attempts-in-php/679767#679767 0 Answer by L. Cosio for Limiting user login attempts in PHP L. Cosio 2009-03-25T00:14:20Z 2009-03-25T00:14:20Z <p>Yes, it's necessary to protect accounts from sophisticated brute force attacks - as in, using bots and dictionary files - down to someone just trying to guess the password of the account.</p> http://stackoverflow.com/questions/679756/limiting-user-login-attempts-in-php/679775#679775 3 Answer by OIS for Limiting user login attempts in PHP OIS 2009-03-25T00:16:51Z 2009-03-25T00:16:51Z <p>If users can set their own passwords, some bot/kid will try to log in with a list of common passwords, and succeed. And if they don't know any users, they will try common names like admin, simon, rico, etc.</p> <p>It doesn't help to just flag the user in session, as they can just remove the cookie or query param on their end. You need to have a count of failed login attempts for both IP and login name. Maybe be more forgiving for the IP as it can be shared among many users.</p> http://stackoverflow.com/questions/679756/limiting-user-login-attempts-in-php/679858#679858 2 Answer by Sepehr Lajevardi for Limiting user login attempts in PHP Sepehr Lajevardi 2009-03-25T01:02:19Z 2009-03-25T01:16:46Z <p>Using a good implemented CAPTCHA could be an alternative way to enpower your application security against brute-force attacks. there's a <a href="http://woork.blogspot.com/2009/02/10-free-captcha-scripts-and-services.html" rel="nofollow">wide variety of captcha providers</a> available for free, let's try the easy way if you're in a hurry. Also please consider that there's <a href="http://www.google.com/search?q=captcha%2Bis%2Bnot%2Bsafe" rel="nofollow">people</a> outta here saying that <em>"oh, no! this captcha thing is not secure enough!"</em>.</p> <p><em><blockquote>"For those of you who don't know, a CAPTCHA is program that can tell whether its user is a human or another computer. They're those little images of distorted text that you translate when you sign up for Gmail or leave a comment on someone's blog. Their purpose is to make sure that someone doesn't use a computer to sign up for millions of online accounts automatically, or.." <a href="http://billthelizard.com/2009/03/worst-captcha-ever.html" rel="nofollow">ref</a>.</blockquote></em></p> http://stackoverflow.com/questions/679756/limiting-user-login-attempts-in-php/679892#679892 2 Answer by thomasrutter for Limiting user login attempts in PHP thomasrutter 2009-03-25T01:30:05Z 2009-03-25T01:30:05Z <p>For my own projects I wrote a generalized 'floodcontrol' library which handles this sort of thing.</p> <p>It allows me to specify how many attempts may be made in X amount of time. It allows for a certain number of 'grace' attempts in a short time, so that only really unusual behaviour will be caught.</p> <p>I record in the database a few things:</p> <ul> <li>The IP address (or the first 24 bits of it)</li> <li>The action that was attempted (ie 'log in', 'search', 'comment')</li> <li>The time of the attempt</li> <li>Number of attempts (attempt counter)</li> </ul> <p>For each attempt made I query against the partial IP address and the action, and if a previous attempt was made within a certain window of time then I increment the attempt counter for that attempt. If the attempt counter exceeds the number of grace attempts allowed then I check whether the last attempt was within X seconds of now and if so, return false - therefore the action will be blocked (and the user will be told to wait X seconds before trying again). If the attempt counter is below the number of grace attempts then I return true and let it slide.</p> <p>If a person with the same IP comes by later, then the previous attempt count won't be fetched, because it will be too long ago.</p> http://stackoverflow.com/questions/679756/limiting-user-login-attempts-in-php/680122#680122 2 Answer by scunliffe for Limiting user login attempts in PHP scunliffe 2009-03-25T03:27:57Z 2009-03-25T03:27:57Z <p>I saw a creative approach to this once...</p> <p>For each login attempt, that fails, the lockout time increases... exponentially.</p> <pre><code>attempt | lockout time ====================== 1 | 2s 2 | 4s 3 | 8s 4 | 16s 5 | 32s 6 | 64s 7 | 128s 8 | 256s 9 | 512s 10 | 1024s </code></pre> <p>In theory, it lets user make a mistake or two, but as soon as it appears to become a "hacking" attempt, the hacker gets locked out for longer and longer time periods.</p> <p>I haven't used this myself (yet), but conceptually I quite like the idea. Of course on successful login, the counter is reset.</p> http://stackoverflow.com/questions/679756/limiting-user-login-attempts-in-php/680164#680164 0 Answer by Mark for Limiting user login attempts in PHP Mark 2009-03-25T03:52:47Z 2009-03-25T03:52:47Z <p>I reckon putting a 'failed attempts' counter in the DB would be the safest and easiest way to go. That way the user can't bypass it (by disabling cookies). Reset on successful login of course.</p>