How to find out session timeout duration?

4

Is there a way to find out how long does a website timeout user's session? By looking into cookie? Or is it server side controlled?

Stan

Posted 2012-02-22T06:38:08.310

Reputation: 6 535

Question was closed 2012-02-25T20:18:48.593

Answers

3

the cookie contains a Expires field, read more about it here. a website could use either that .. or track the user with a persistent cookie and then decide itself what to do.

so, the answer to your question is: it depends on how the website's session management is implemented.

akira

Posted 2012-02-22T06:38:08.310

Reputation: 52 754