vote up 0 vote down star
1

I'm writing a database authentication system for my web application which is wrriten in ASP.NET MVC. When someone authorize, it should save his username in cookies. Is it safe to just use HttpResponse.Cookies` for saving a cookie that its value is username? Wouldn't it forgeable?

Saving only the username... Is it the right and safe way? Or should I save the whole User object (if this actually possible)?

Thank you and sorry for my English.

flag

4 Answers

vote up 2 vote down check

No, saving the username is very insecure, because it can be easily faked. Here are my guidelines:

  1. Use a token.
  2. Hash the token when it is stored in the database.
  3. Make the cookie HttpOnly.

Tokens can be generated by a CSPRNG to ensure that the auto-login cookie can not be faked.

Hashing the tokens in the database prevents user account stealing in the case that you database is compromised. (Remember, the token at this point is a password-equivalent.)

HTTP-Only cookies prevent XSS attacks that could potentially steal the cookie.

link|flag
What's a token? – Alon Nov 3 at 16:01
A token is a randomly generated number or piece of text that is impossible to guess. – John Gietzen Nov 3 at 16:02
Thanks, but how can I make a cookie HttpOnly? – Alon Nov 3 at 16:04
Cookie['whatever'].HttpOnly = true; – John Gietzen Nov 3 at 16:04
oh, thank you very much. – Alon Nov 3 at 16:06
vote up 0 vote down

Use the built-in forms authentication framework to handle the HTTP transport end of the world and avoid reinventing the wheel.

PS: before someone downvotes, remember that FormsAuthentication != using the SqlMembershipProvider.

link|flag
vote up 0 vote down

No, saving the user name in a cookie to flag that the user it authorizes is not the right way, and it's definitely not safe.

It would be quite easy to edit the cookie to be someone else's user name, and voila! you are now authorized as that user.

Instead you should store some information in the cookie that is not specific to the user, but is specific to the user session. You could create a value from the browser string (scrambled in some way to make it less obvious) and store the value both in the cookie and in the session data on the server. When the user sends the next request, you can verify that the value comes from the same session and the same browser configuration.

It's of course not totally safe, as you can spoof both cookie data and browser string, but it's a lot safer than putting the user name in a cookie, and somwhat safer than only relying on the session id.

To get an authentication that is really safe, you have to use SSL.

link|flag
vote up 0 vote down

If you store the username in the cookie then its very easy for someone to change that.

A better approach would be to store a session id (which you have generated) in the cookie and hang things like the username off that in your server.

link|flag
The session id and it's username/user is should be saved in a database? – Alon Nov 3 at 16:03
Yes -- so you would use the session id as a key into a table which contains all the session related information you need, such as the user. Since you generated the id, probably in the form of a GUID, someone won't be able to fake another user's session by modifying the cookie value. – Andy Nov 3 at 16:08

Your Answer

Get an OpenID
or

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