Jump to content

Detecting Sessions


phpretard

Recommended Posts

Get a cookie viewer and find the cookies named PHPSESSID the value will be the session key value

 

Note: that is not guaranteed.  PHPSESSID is the default cookie name for the default cookie that is set when a session is created.  You can easily make your own cookie name that holds the session id, or not depend on the cookie at all.  Regardless though, it will not reveal other details about a current session (like variables being used, what info they hold).  Those are stored on the server by default or in a database if the site is written to store them there.  And even if you do find a PHPSESSID cookie, the session id will most likely be encrypted.

Link to comment
https://forums.phpfreaks.com/topic/141458-detecting-sessions/#findComment-740437
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.