Jump to content

session security question


php_guest

Recommended Posts

I have a business social network site on hosting server. I am wondering if sessions are enough secure.

ini_set('session.use_only_cookies', 1); //this prevent Session Fixation?
session_start();

if($_SESSION['loggedIn'] && $_SESSION['userIP']==$_SERVER["REMOTE_ADDR"]) // extra security
//user is logged in, assign all data to this profile from session
else
//user is not logged in, no data are assigned

 

Would you consider that as enough secure?

Link to comment
https://forums.phpfreaks.com/topic/226884-session-security-question/
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.