up vote 5 down vote favorite
2
share [g+] share [fb]

I'm looking for tips and ideas on how to best incorporate authentication with PHP using Cookies.

Should each php script check for the cookie value to determine if the user is still logged in? Should there be one script that does this check and Include that script from each of the other scripts? Can the cookie value be seen by php from different depths of the filesystem?

Like: blahblahblah.com/ and blahblahblah.com/login/

Can they both read the cookie?

Lots of questions on one post, but thanks!

link|improve this question
Security is an area where, if you have to ask, you're not experienced enough to be building it yourself. You'll inevitably create a vulnerability of some sort, and end up paying for it later. There are decent auth libraries out there, written by people who have a deep understanding of the security issues at hand. Pick one and use it. – Frank Farmer Oct 28 '09 at 0:05
If it is not a critical application, it could be very instructional to build authentication from scratch. - However, as there are many good frameworks out there (Zend Framework, Symfony, CakePHP) you'll get much better results if you don't reinvent the wheel and do all by yourself. – Silvan Mühlemann Oct 28 '09 at 14:41
Thanks everyone for your answers. Very helpful. I am using php sessions to hold form input values and have a 'start over' script that destroys the session. That is why I was looking to use cookies for authentication instead of php's session. But based on the responses to this thread I need to keep authentication on the server side. And thanks for the php framework references. I've used a few but not Symfony or CakePHP. Going to try them out. – Dan Whitinger Oct 28 '09 at 16:11
feedback

4 Answers

up vote 2 down vote accepted

nothing is safe on the client side.

You change the login flag on Cookies easily on any browser. Thus it is more recommended to be saving login-related data on php's $_SESSION

If you wish to extend the session, simply look at session_set_cookie_params().

By default, the same session will be used for the current domain and all the paths on that domain. Thus it is readable for both blahblahblah.com/ and blahblahblah.com/login/

When the user logs in, save the username and the hash of the password in the Session.

At the start of each script, verify the Session's username and password with the one in database. If is correct, then set a flag (e.g. $userLoggedIn = true) to indicate on server-side that the user is logged in. else false.

link|improve this answer
feedback

Some thoughts, in no particular order:

  • Separate out the various layers: persistent storage vs authentication.
  • PHP sessions are quite robust and are the recommended way to maintain persistent storage.
  • You can have a valid session, but not a valid login.
  • Avoid multiple cookies. One is enough. PHP sessions work with one cookie.
  • You can set sub-domains and paths on cookies, but there's really little point unless you set lots, which is not recommended (see above).
  • Put everything you think you might want in a cookie in the session instead.
  • You should have some common code that all your pages include. That is where you initialize your session. Then everything will Just Work. It can also verify the login is valid, too.
  • Have one place that does the login authentication and everything associated with that.
  • Don't forget a logout screen!
link|improve this answer
feedback

Its a good idea to have one script do the session/login check and include it in the secure pages. AS for the depth , you can define that in the setcookie() if the directory parameter is set to "/" then its accessible all across.

Generally its a good idea to use sessions instead of cookies , as thats more secure , but you can decide to build your own session system based on encrypted data in the cookie and that can work too , but again sessions, which store data on the server side are recommended.

link|improve this answer
feedback

The cookie is per domain, so no matter how deep you are in your directory structure, the cookie will be read OK (as long as your domain stays the same - NB this means that www.example.com and example.com can be different cookies).

I'd suggest having an authentication check that compares the session ID in the cookie with eg a database table listing logged in users and their session ID - this check can be in its own method/include file that is include()'d on each page. That way the check will be performed on every page load. NB this is basic and there are much more secure methods - some of which have been mentioned in other comments here.

As Mauris said though, nothing is safe on the client side - don't use a cookie to store a "logged_in" value which you check for true/false!

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.