Remember Me

Discussion in 'Community Forum Software' started by Chani, Nov 28, 2009.

  1. Chani

    Chani Grand Master

    Joined:
    Sep 1, 2009
    Messages:
    884
    Likes Received:
    54
    First Name:
    Chani
    When you click the "Remember Me" checkbox, is your password stored in your cookie, or is your session stored, or something else?

    I have a moderator that doesn't want to check that because he's at work and doesn't want his password to be discovered.
     
  2. Nick

    Nick Regular Member

    Joined:
    Jul 27, 2008
    Messages:
    7,441
    Likes Received:
    218
    In that case, I'd recommend just not ticking it. I don't know exactly what information is saved, but the general rule of thumb is that if you are using a public computer or connection, then don't tick the box. :)
     
  3. Chani

    Chani Grand Master

    Joined:
    Sep 1, 2009
    Messages:
    884
    Likes Received:
    54
    First Name:
    Chani
    Yeah, those are my thoughts as well.

    His problem is that he can get a wee bit wordy, and he lost a post today because it took him more than 15 minutes to type it (with interruptions).

    I did increase the session times to 30 minutes. Hopefully that will help.
     
  4. MjrNuT

    MjrNuT Grand Master

    Joined:
    Oct 14, 2009
    Messages:
    579
    Likes Received:
    36
    He can always clear his casche and discard and passwords, every session as one way to work with having it "ticked".
     
  5. FullMetalBabe

    FullMetalBabe Zealot

    Joined:
    May 30, 2009
    Messages:
    2,912
    Likes Received:
    339
    I'm pretty sure it's the session(to your site) that is saved and not the password, the password is normally saved within your browser, which is why you could delete the cookies. The browser is the one that saved your password because I'm pretty sure the cookies let the browser know you want to be remembered next time a computer with that IP access the site. ~_~Or maybe I'm rambling useless stuff. X3
     
  6. gnatster

    gnatster Regular Member

    Joined:
    May 31, 2009
    Messages:
    717
    Likes Received:
    98
    Location:
    Down the hall
    First Name:
    Nathan
    There is a hack to Save As Draft that I found useful to add for a moderator on my site that is also quite wordy and was getting timed out.
     
  7. Ryan Ashbrook

    Ryan Ashbrook Regular Member

    Joined:
    Jun 29, 2009
    Messages:
    343
    Likes Received:
    25
    Location:
    Cincinnati, Ohio
    Most forum software will store your password in a cookie, but it's almost always using their hashing algorithm coupled with your unique salt. In vBulletin, this cookie is usually called "bbpassword". But the "bb" part can change depending on how an administrator has set up their config.php.

    If someone were to view that cookie they would not be able to obtain your password because it would look similar to this:

    Code:
    h3dfi8sw03jnah3esh20s94mf6730ab2
    This is what your password looks like to the naked eye, however it's unique to each user because each user has another unique value, randomly generated, associated with it.

    The software then takes this, along with your username, and matches it up with what is stored in the database under your account, along with other preventative measures to prevent cookie and session spoofing.

    If it finds a match, then it creates a session in the database automatically, which in turn, automatically logs you in. It also creates certain unique parameters, such as User Agents, User ID's, Registration Dates, etc. that ensure your session doesn't get picked up by another computer.

    It then fetches your session, on each page load, from the database using your unique identifying parameters.

    This is the very basics of session handling. I'm not good with sessions so a lot more probably goes into it than I explained here.

    In short, if the computer he uses is not used by anyone else in his workplace, then he'll be fine. If it's used by others, then he should not use the Remember Me function unless he specifically remembers to log out afterwards.

    Most modern day forum software will never store your password in plaintext.
     
    2 people like this.
  8. Boss

    Boss Resident Silly Man

    Joined:
    May 23, 2009
    Messages:
    941
    Likes Received:
    23
    Location:
    California
    First Name:
    Alex
    Most BB software don't allow password changes without the original one being typed in, vBulletin for example has this safe measure before you can edit the password or registration email.

    And if he logs in at another computer, say at home, and if most software works like Invision does, it'll invalidate the other login session. Although, that's completely up to the administrator. Your GMail works similarly. Click the IP address at the bottom of the window, and you'll see who's been accessing your account. Also has the option to log out of all other sessions except the current one.
     
    2 people like this.
  9. Chani

    Chani Grand Master

    Joined:
    Sep 1, 2009
    Messages:
    884
    Likes Received:
    54
    First Name:
    Chani
    Thank you very much!

    I'll let him know that he's (mostly) safe using remember me as long as he uses log out whenever he's done.

    Thanks again! :)
     
  10. Tex

    Tex Adept

    Joined:
    Oct 23, 2009
    Messages:
    193
    Likes Received:
    22
    First Name:
    Blake
    Since this is a moderator we're talking about I would highly recommend he does not use that Remember Me option. It's too easy to forget to log out then the next user at that computer could access his forum account.

    Regardless, anytime I type up a long post I frequently hit Ctrl+A to highlight everything then Ctrl+C to copy it so in case something like that happened after I hit submit I could easily log back in and simply paste everything back which I already typed.
     
  11. Ryan Ashbrook

    Ryan Ashbrook Regular Member

    Joined:
    Jun 29, 2009
    Messages:
    343
    Likes Received:
    25
    Location:
    Cincinnati, Ohio
    We're talking about a work computer, though. Chances are he's the only one that uses it there.
     
  12. Chani

    Chani Grand Master

    Joined:
    Sep 1, 2009
    Messages:
    884
    Likes Received:
    54
    First Name:
    Chani
    I've let him know about the copy+paste method. I've used that for years.

    I'm not terribly worried about others where he works hacking into cookies, and he's VERY meticulous about signing out when he's done. :)
     
  13. Tex

    Tex Adept

    Joined:
    Oct 23, 2009
    Messages:
    193
    Likes Received:
    22
    First Name:
    Blake
    All good, I just like to know that anyone with those permissions on my site doesn't take the chance. :)
     

Share This Page