I was trying to understand how sessions work in PHP and found that session data is by default stored in the file system. In a shared hosting environment, session data can be read by PHP scripts written by any user. How can this be prevented ?
feedback
|
|
You can override the session save handler for your script to use something other than the filesystem, such as a database or memcache. Here is a detailed implementation: http://phpsec.org/projects/guide/5.html | |||
|
feedback
|
|
Depends on the level of access you have to the php.ini file - if you're on a Shared Hosting environment which runs suPHP and allows you to have your own php.ini file (for instance) then you can simply set the session.save_path to a path like ~/tmp instead of /tmp which is usually shared. To begin with though, I don't think that you actually CAN read php session data from other applications. I believe it's something rather unique to the person viewing it. Finally php Session data is not solely file system saved only. It can also be setup to save in a cookie on the user's machine or you can setup php session data to be stored in a database. | |||||||
feedback
|
|
Write your own SESSION wrapper. For example CodeIgniter's session library doe's not depend on PHP's native one and it's more secure:
| |||
|
feedback
|
|
You can use session_save_path() to change the session data directory to one that isn't shared. | |||||||||||
feedback
|
|
Use session_save_path() and change your session folder like "/htdocs/storage/sessions". Now sessions only saved to your given path. | |||
|
feedback
|
|
@Hammerite, @Mike Sherov @John Conde - shared hosts usually share the /tmp directory between all users, but keep your user directory private to you. This means that if I'm on the same shared host and server as you I can't read your files, but I CAN read your sessions and other temporary files (e.g. file uploads). This is a BIG security hole, especially if you stroe sensitive data in a session. There's a quick and dirty way to move your sessions inside your user folder here or you can use the method suggested by Mike Sherov. With either of these you can run into race condition problems as described and demonstrated here There is a better solution there, involving locking and separating session variables, it's explained and demo'd there very well. | |||
|
feedback
|