up vote 13 down vote favorite
12
share [g+] share [fb]

Specifically this is regarding when using a client session cookie to identify a session on the server.

Is the best answer to use SSL/HTTPS encryption for the entire web site, and you have the best guarantee that no man in the middle attacks will be able to sniff an existing client session cookie?

And perhaps second best to use some sort of encryption on the session value itself that is stored in your session cookie?

If a malicious user has physical access to a machine, they can still look at the filesystem to retrieve a valid session cookie and use that to hijack a session?

link|improve this question

feedback

7 Answers

up vote 16 down vote accepted

Encrypting the session value will have zero effect. The session cookie is already an arbitrary value, encrypting it will just generate another arbitrary value that can be sniffed.

The only real solution is HTTPS. If you don't want to do SSL on your whole site (maybe you have performance concerns), you might be able to get away with only SSL protecting the sensitive areas. To do that, first make sure your login page is HTTPS. When a user logs in, set a secure cookie (meaning the browser will only transmit it over an SSL link) in addition to the regular session cookie. Then, when a user visits one of your "sensitive" areas, redirect them to HTTPS, and check for the presence of that secure cookie. A real user will have it, a session hijacker will not.

link|improve this answer
HTTPS will prevent the sniffing only. But if you have a XSS, or the session IDs can be guessed easily, or you are vulnerable to session fixation, or your session ID storage is weak (SQL injection?), SSL will be no improvement at all. – Calimo Jan 22 at 18:15
feedback

The SSL only helps with sniffing attacks. If an attacker has access to your machine I will assume they can copy your secure cookie too.

At the very least, make sure old cookies lose their value after a while. Even a successful hijaking attack will be thwarted when the cookie stops working. If the user has a cookie from a session that logged in more than a month ago, make them reenter their password. Make sure that whenever a user clicks on your site's "log out" link, that the old session UUID can never be used again.

I'm not sure if this idea will work but here goes: Add a serial number into your session cookie, maybe a string like this:

SessionUUID, Serial Num, Current Date/Time

Encrypt this string and use it as your session cookie. Regularly change the serial num - maybe when the cookie is 5 minutes old and then reissue the cookie. You could even reissue it on every page view if you wanted to. On the server side, keep a record of the last serial num you've issued for that session. If someone ever sends a cookie with the wrong serial number it means that an attacker may be using a cookie they intercepted earlier so invalidate the session UUID and ask the user to reenter their password and then reissue a new cookie.

Remember that your user may have more than one computer so they may have more than one active session. Don't do something that forces them to log in again every time they switch between computers.

link|improve this answer
feedback

Ensure you don't use incremting integers for session IDs. Much better to use a GUID, or some other long randomly generated character string.

link|improve this answer
feedback

Try Secure Cookie protocol described here

As stated in document:

A secure cookie protocol that runs between a client and a server needs to provide the following four services: authenti- cation, condentiality, integrity and anti-replay.

As for ease of deployment:

In terms of efciency, our protocol does not involve any database lookup or public key cryptography. In terms of deployability, our protocol can be easily deployed on an existing web server, and it does not require any change to the Internet cookie specication.

In short: it is secure, lightweight, works for me just great.

link|improve this answer
Your link is a spec of the protocol - do you have a link to an implementation? That would be great - thanks. – Adam Aug 7 '10 at 17:17
feedback

Have you considered reading a book on PHP security? Highly recommended.

I have had much success with the following method for non SSL certified sites.

  1. Dis-allow multiple sessions under the same account, making sure you aren't checking this soely by IP address. Rather check by token generated upon login which is stored with the users session in the database, as well as IP address, HTTP_USER_AGENT and so forth

  2. Using Relation based hyperlinks Generates a link ( eg. http://mysite.com/secure.php?token=2349df98sdf98a9asdf8fas98df8 ) The link is appended with a x-BYTE ( preferred size ) random salted MD5 string, upon page redirection the randomly generated token corresponds to a requested page.

    • Upon reload, several checks are done.
    • Originating IP Address
    • HTTP_USER_AGENT
    • Session Token
    • you get the point.
  3. Short Life-span session authentication cookie. as posted above, a cookie containing a secure string, which is one of the direct references to the sessions validity is a good idea. Make it expire every x Minutes, reissuing that token, and re-syncing the session with the new Data. If any mis-matches in the data, either log the user out, or having them re-authenticate their session.

I am in no means an expert on the subject, I'v had a bit of experience in this particular topic, hope some of this helps anyone out there.

link|improve this answer
feedback

To reduce the risk you can also associate the originating IP with the session. That way an attacker has to be within the same private network to be able to use the session.

Checking referer headers can also be an option but those are more easily spoofed.

link|improve this answer
no, you can't use the originating IP, as it may change - either through dynamic IPs, changed when a user is temporarily disconnected, or through the (implicit or explicit) usage of a proxy farm. Also, session hijackers coming from the same ISP may use the same proxy & IP as a legitimate user... – Olaf Kock Oct 3 '08 at 15:35
PHP-Nuke has a good page about their session approach, and they talk in detail about how hooking it to the IP doesn't work with all ISPs phpnuke.org/… – Sembiance Jun 29 '10 at 19:02
Changing Ip's are very common with mobile internet providers. With Vodafone, my IP changes with EVERY request. – Blaise Mar 27 '11 at 18:02
feedback

Protect by: $ip=$_SERVER['REMOTE_ADDER']; $_SESSEION['ip']=$ip;

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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