I've developed my website that checks if the user is registered and creates a session variable with the username. It's all that is stored as a session variable. If I want to protect my pages (so that only registered users may see them), I check if the session variable is set. Is this secure? Or can you give a more secure method?
|
|
These articles appear to be quite useful in explaining the security concerns:
The first in particular seems to deal with several of the methods of session ID storage, and it appears the others cover certain ones in more detail. |
||
|
|
|
|
Generally, the Session is server side, but If I somehow get the Session ID I can just hijack it. I'd recommend at least storing either the IP and maybe also the User-Agent, and in case of mismatch, invalidate the Session. |
||||||||
|
|
|
If you store the username in the session then anyone who can create a valid session cookie for your site can inject the username and impersonate that user. This would be really bad if that user happened to have administrator privileges. There are a lot of things that you probably need to consider, but at a minimum you should be generating a random session key with a fixed or sliding expiration window and store that in your session cookie instead of the user name. You can then associate that key with the a particular session object on the server, the session object can contain the username for use in authorization. Your session cookie ought to be encrypted to make it harder to generate. These two things will go a long way in solving your problem. |
||||
|
|
|
Basically, you are fine with storing whatever you want in Session. The only caveats are:
In general, though, most of the security concerns mentioned (including XSS attacks) are not with storing stuff in Session but rather general security concerns. Storing userid -- or some encrypted form of the same -- in Session is generally quite secure. Most importantly: if you were to use your own algorithm to generate a random cookie code for each user, that would no doubt have more security flaws (not being an expert) than the session-key generation algorithms of PHP, ASP.NET, Rails, whatever... I could find a more appropriate Bruce Schneier quote, but this one will do, "No one can duplicate the confidence that RSA offers after 20 years of cryptanalytic review.” |
|||
