vote up 10 vote down star
2

This question has always troubled me.

In linux, when asked for a password, if your input is the correct one, it checks right away, with almost no delay. But, on the other hand, if you type the wrong password, it takes longer to check. Why is that?

I observed this in all distros I've ever tried.

flag

You will find this to be true of Windows as well. Also, changing the Title to something like, "Why have wrong passwords take longer than correct ones." Would make it more programming related. – he_the_great Apr 3 at 5:31

7 Answers

vote up 29 vote down check

It's actually to prevent brute force attacks from trying millions of passwords per second. The idea is to limit how fast passwords can be checked and there are a number of rules that should be followed.

  • A successful user/password pair should succeed immediately.
  • There should be no discernible difference that can be detected by someone failing.

That last one is particularly important. It means no helpful messages like "your username is correct but your password is wrong", not even a time difference in response between "invalid user and password" and "valid user but invalid password".

Every failure should deliver exactly the same information, textual and otherwise.

Some systems take it even further, increasing the delay with each failure, or only allowing three failures then having a massive delay before allowing retry.

link|flag
How does this prevent an app from forking, trying a password, and if it doesn't return success in some amount of time, kill -9 the child and fork again. Yes that only works if you can log in as some user but when has that stopped anyone? – BCS Apr 22 at 20:12
It doesn't stop anyone but you still have to delay for that "some amount of time". Even a tiny delay makes checking millions of passwords useless, and you will be detected if you're doing it while logged on - do you think nothing is logged for failed logins? – paxdiablo Apr 22 at 23:49
BCS: if you already have a valid login with enough privileges to do what you propose, chances are that you no longer need brute force attacks (because there are other attack vectors available to you). The delay is most useful against external attackers. – ammoQ Nov 23 at 8:33
vote up 11 vote down

This makes it take longer to guess passwords.

link|flag
vote up 10 vote down

I am not sure, but it is quite common to integrate a delay after entering a wrong password to make attacks harder. This makes a attack practicaly infeasible, because it will take you a long time to check only a few passwords.

Even trying a few passwords - birthdates, the name of the cat, and things like that - is turned into no fun.

link|flag
And often the timeout on the second failure is longer than the timeout on the first - which is good too. – Jonathan Leffler Apr 3 at 2:58
vote up 9 vote down

Basically to mitigate against brute force and dictionary attacks.

From The Linux-PAM Applicatoin Developer's Guide:

Planning for delays

extern int pam_fail_delay(pam_handle_t *pamh, unsigned int micro_sec);

This function is offered by Linux-PAM to facilitate time delays following a failed call to pam_authenticate() and before control is returned to the application. When using this function the application programmer should check if it is available with,

#ifdef PAM_FAIL_DELAY
    ....
#endif /* PAM_FAIL_DELAY */

Generally, an application requests that a user is authenticated by Linux-PAM through a call to pam_authenticate() or pam_chauthtok(). These functions call each of the stacked authentication modules listed in the relevant Linux-PAM configuration file. As directed by this file, one of more of the modules may fail causing the pam_...() call to return an error. It is desirable for there to also be a pause before the application continues. The principal reason for such a delay is security: a delay acts to discourage brute force dictionary attacks primarily, but also helps hinder timed (covert channel) attacks.

link|flag
vote up 4 vote down

It's a very simple, virtually effortless way to greatly increase security. Consider:

  1. System A has no delay. An attacker has a program that creates username/password combinations. At a rate of thousands of attempts per minute, it takes only a few hours to try every combination and record all successful logins.

  2. System B generates a 5-second delay after each incorrect guess. The attacker's efficiency has been reduced to 12 attempts per minute, effectively crippling the brute-force attack. Instead of hours, it can take months to find a valid login. If hackers were that patient, they'd go legit. :-)

link|flag
vote up 3 vote down

Failed authentification delays are there to reduce the rate of login attempt. The idea that if somebody is trying a dictionary or a brute force attack against one or may user accounts that attacker will be required to wait the fail delay and thus forcing him to take more time and giving you more chance to detect it.

You might also be interested in knowing that, depending on what you are using as a login shell there is usually a way to configure this delay.

In GDM, the delay is set in the gdm.conf file (usually in /etc/gdm/gdm.conf). you need to set RetryDelay=x where x is a value in seconds.

Most linux distribution these day also support having FAIL_DELAY defined in /etc/login.defs allowing you to set a wait time after a failed login attempt.

Finally, PAM also allows you to set a nodelay attribute on your auth line to bypass the fail delay. (Here's an article on PAM and linux)

link|flag
vote up 1 vote down

I don't see that it can be as simple as the responses suggest.

If response to a correct password is (some value of) immediate, don't you only have to wait until longer than that value to know the password is wrong? (at least know probabilistically, which is fine for cracking purposes) And anyway you'd be running this attack in parallel... is this all one big DoS welcome mat?

link|flag
that's not what they meant. there is an obvious difference between getting the password wrong, or right. what they meant was that there should be no difference between an incorrect username, and an incorrect password. and do you mean running this attack in parallel? how can you run it in parallel? – Mark Apr 3 at 4:19
@Mark, running in parallel probably would entail opening multiple connections and trying to login. Still time consuming and not very practical. – he_the_great Apr 3 at 5:34
If you can run a million checks per second on a non-slowed connection and the connection then has a 1-second delay added for failed attempts, you'd need a million attack clients to get the same effect. I doubt the server will allow that many telnet sessions to be created. – paxdiablo Apr 3 at 5:38
the point is you don't have to wait out the delay before you try the next password, so what's the use? – Greg M Apr 3 at 5:38
@Pax, that's what I meant by DoS welcome mat – Greg M Apr 3 at 5:39
show 4 more comments

Your Answer

Get an OpenID
or

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