Jump to content

$_session & security


chmpdog

Recommended Posts

For the most part sessions are safe, though they can be hacked in various ways. One problem is shared hosts - usually all accounts on the host will use the same folder for sessions, and some sites have been hacked that way. Another is spoofing of session IDs. But, hacking sessions is not particularly easy.

 

If you can help it, don't pull sensitive data out of your database. For example, many people when designing login scripts pull out the password, and compare it to the entered password using PHP. But its better to just search for the username password combination of the database, and see if there are any results.

Link to comment
https://forums.phpfreaks.com/topic/145494-_session-security/#findComment-763940
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.