vote up 3 vote down star
1

I'm working on a project in which remote clients need to log in to a webserver. I'm not looking for examples in any particular language; just a general idea of the security concerns involved.

The basic question is:
How should user credentials be passed to a webserver for verification?

I'm picturing your typical website login. One field for username, and another for password. You type in both and click "Log In". What happens next?

I can imagine a few scenarios:

  1. Credentials are sent to the server as plain text. A server-side script creates a hash of the password and compares it to the stored hash for the user.
  2. Credentials are encrypted locally, and the result is sent to the server. The server decrypts the credentials and continues as in #1
  3. Something I haven't thought of yet? I'm new to this. Go easy on me!

Option #1 strikes me as weak because the credentials are sent over the internet in plain text.

I see option #2 as not much better than option #1. If someone intercepts the encrypted credentials, can they not just send those to the server another time, and still manage to log in?

Any insight is appreciated.

edit: the "Related" sidebar suggests this question, which mentions a client/server handshake with a salt added to the password. Is that the right way to go?

flag

@Jim Puls: Thank you for the edits. I'm still laughing at myself for "Wesbite" :) – eJames May 19 at 21:01
1  
Wesbite. Sounds like an episode of ST:TNG – Randolpho May 19 at 21:08
... Oh dear. I'm ashamed that I got that. – eJames May 19 at 21:13

5 Answers

vote up 4 vote down check

Option 1 is by far the default. The plaintext weakness is usually overcome by enforcing SSL during the login so that the password is at least encrypted during transit.

Edit: I suggest you follow the accepted answer for that question.

Don't forget to require a nonce for your request. This will help protect you against replay attacks.

Edit the second: Wayne thoughtfully mentioned that you should salt your password before you hash. Here are some basic tips:

  1. It doesn't matter if your salt is a prefix, postfix, or infix
  2. Your salt should be large, random, and complex.
  3. Your salt should be unique per salted value. The salt itself doesn't need to be encrypted.
link|flag
1  
Does that technically fall under Option #2, then? – eJames May 19 at 20:54
I suppose it depends on how you read it. I read Option 2 to mean the use of some sort of client-side javascript encryption then posting the encrypted password plaintext. – Randolpho May 19 at 20:55
And thank you for the link to the nonce article. I've never heard of that before :) – eJames May 19 at 20:56
Hmm, fair enough. I wasn't 100% clear on the distinction. – eJames May 19 at 20:57
It's old skool, but I'd only recently learned of it myself. I managed to avoid the need for secure programming for the longest time... – Randolpho May 19 at 20:58
show 3 more comments
vote up 3 vote down

Why not SSL the communications? Being able to observe the conversation gives me insight into your app. Encrypt the entire communication, not just the credentials.

Edit: Always use salt for a locally stored hash. Windows continues to fail as far as brute forcing locally hashed passwords because they do not salt by default.

link|flag
Yes, I forgot to mention salting before hashing. +1 and time for an edit. – Randolpho May 19 at 20:59
vote up 0 vote down

On the client side you only have a browser that can render HTML and submit forms. Who's gonna encrypt stuff?

Send login and password in plain text (SSL it if you have concerns). On the server side you can do whatever you want with it (preferrably hash and salt password before storing them in the database).

link|flag
vote up 1 vote down

The simplest answer is to get an SSL certificate for your server. There's really no reason to mess around with creating your own encryption techniques in this particular application. As you've noted, if the connection isn't encrypted, you leave yourself open to man-in-the-middle attacks, regardless of whether the client or the server is doing the password encryption. Encrypt the connection, and you don't have to worry about it.

link|flag
vote up 0 vote down

You might also want to consider using multiple iterations of the hash algorithm, 1000 iterations will slow things down nicely and make rainbow tables that much harder to create

link|flag

Your Answer

Get an OpenID
or

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