Remember when there was no conventional logout option on Amazon? You’ve probably also noticed that Google and Microsoft sites try to keep you logged in, and services like Discord hide the logout somewhere hard to find

  • @pinknoise
    link
    3
    edit-2
    3 years ago

    your sessions should be gone anyway when you open it again

    Your session cookie will be gone, but your session is still valid until the server decides to invalidate it by a time-out. (Unless they save the whole session in the cookie)

      • @pinknoise
        link
        13 years ago

        Session ID’s could be stolen (XSS, malware) or guessed (bad implementation of the id generation). Sites that want you to be logged-in all the time know of that risk and will use (invasive) techniques to assess how likely it is that the use of a given session is legit. (GeoIP, Fingerprinting)