What are some guidelines for maintaining responsible session security with PHP? There's information all over the web and it's about time it all landed in one place!
|
|
locked by Bill the Lizard♦ Jul 18 '12 at 17:21
This question exists because it has historical significance, but it is not considered a good, on-topic question for this site, so please do not use it as evidence that you can ask similar questions here. This question and its answers are frozen and cannot be changed. More info: FAQ.
|
There are a couple of things to do in order to keep your session secure:
|
|||||||||||||||||||||
|
|
One guideline is to call session_regenerate_id every time a session's security level changes. This helps prevent session hijacking. |
|||
|
|
|
My two (or more) cents:
There is a tiny but good book on this topic: Essential PHP Security by Chris Shiflett.
On the home page of the book you will find some interesting code examples and sample chapters. You may use technique mentioned above (IP & UserAgent), described here: How to avoid identity theft |
||||
|
|
I think one of the major problems (which is being addressed in PHP 6) is register_globals. Right now one of the standard methods used to avoid The "correct" way to do it (as of 5.2, although it's a little buggy there, but stable as of 6, which is coming soon) is through filters. So instead of:
you would do:
or even just:
|
|||||||||||||||
|
|
This session fixation paper has very good pointers where attack may come. See also session fixation page at Wikipedia. |
|||
|
|
|
Using IP address isn't really the best idea in my experience. For example; my office has two IP addresses that get used depending on load and we constantly run into issues using IP addresses. Instead, I've opted for storing the sessions in a separate database for the domains on my servers. This way no one on the file system has access to that session info. This was really helpful with phpBB before 3.0 (they've since fixed this) but it's still a good idea I think. |
|||
|
|
|
This is pretty trivial and obvious, but be sure to session_destroy after every use. This can be difficult to implement if the user does not log out explicitly, so a timer can be set to do this. Here is a good tutorial on setTimer() and clearTimer(). |
||||
|
|
|
The main problem with PHP sessions and security (besides session hijacking) comes with what environment you are in. By default PHP stores the session data in a file in the OS's temp directory. Without any special thought or planning this is a world readable directory so all of your session information is public to anyone with access to the server. As for maintaining sessions over multiple servers. At that point it would be better to switch PHP to user handled sessions where it calls your provided functions to CRUD (create, read, update, delete) the session data. At that point you could store the session information in a database or memcache like solution so that all application servers have access to the data. Storing your own sessions may also be advantageous if you are on a shared server because it will let you store it in the database which you often times have more control over then the filesystem. |
|||
|
|
|
I set my sessions up like this- on the log in page:
(phrase defined on a config page) then on the header that is throughout the rest of the site:
|
||||
|
|
php.ini
eq Apache add header:
|
|||||||
|
|
I would check both IP and User Agent to see if they change |
|||||||||||||||||
|
|
If you you use session_set_save_handler() you can set your own session handler. For example you could store your sessions in the database. Refer to the php.net comments for examples of a database session handler. DB sessions are also good if you have multiple servers otherwise if you are using file based sessions you would need to make sure that each webserver had access to the same filesystem to read/write the sessions. |
|||
|
|
|
You need to be sure the session data are safe. By looking at your php.ini or using phpinfo() you can find you session settings. session.savepath_ tells you where they are saved. Check the permission of the folder and of its parents. It shouldn't be public (/tmp) or be accessible by other websites on your shared server. Assuming you still want to use php session, You can set php to use an other folder by changing session.savepath_ or save the data in the database by changing session.savehandler_ . You might be able to set session.savepath_ in your php.ini (some providers allow it) or for apache + modphp, in a .htaccess file in your site root folder:
Check Chris Shiflett's tutorial or ZendSessionSaveHandler_DbTable to set and alternative session handler. |
|||
|
|

