Larion Studios forum stores your passwords in unhashed plaintext. Don’t use a password there that you’ve used anywhere else.

  • voxel
    link
    fedilink
    English
    39
    edit-2
    2 years ago

    no, they probably dont.
    they just send it to your email upon registration, which is kinda a bad idea, but they are probably storing passwords hashed afterwards.

    • @Mirodir@discuss.tchncs.de
      link
      fedilink
      English
      192 years ago

      …and if they keep the emails they send out archived (which would be reasonable), they also have it stored in plaintext there.

    • @darkkite@lemmy.ml
      link
      fedilink
      English
      92 years ago

      this is still a terrible idea. the system should never know the plaintext password.

      logs capture a lot even automated emails. i don’t see a single reason to send the user their plaintext password and many reasons why they shouldn’t

      • voxel
        link
        fedilink
        English
        2
        edit-2
        2 years ago

        passwords are usually hashed server-side tho and that’s done for a reason.
        if handling passwords correctly, server side hashing is way more secure then client-side. (with client side hashing, hash becomes the password…)

      • voxel
        link
        fedilink
        English
        2
        edit-2
        2 years ago

        these emails don’t usually get copied to local outbox folder (as any oher auto generated emails)

        password may end up in cache somewhere tho…
        and this is why it’s a bad idea and rarely done nowadays

    • @dangblingus@lemmy.world
      link
      fedilink
      English
      62 years ago

      I’ve literally never had a service provider email me my own password ever. Maybe a OTP, but never my actual password. And especially not in plaintext.

      What would be the necessity behind emailing someone their own password? Doesn’t that defeat the purpose of having a password? Email isn’t secure.

      • bnjmn
        link
        fedilink
        English
        42 years ago

        Idk if I’m misremembering, but it’s my impression that they did this a lot in the 2000s, haha. I guess bad practices have a habit of sticking around

    • tb_
      link
      fedilink
      English
      6
      edit-2
      2 years ago

      But that still means they had your plaintext password at some point.

      Edit: which, as some replies suggest, may not actually be much of an issue.
      I’m still skeptical about them returning it, however.

      • voxel
        link
        fedilink
        English
        12
        edit-2
        2 years ago

        hashing on client side is considered a bad idea and almost never done.
        you actually send your password “in plain text” every time you sign up.

      • @Kilamaos@lemmy.world
        link
        fedilink
        English
        32 years ago

        Of course. You receive the password in plain on account creation, do the process you need, and then store it hashed.

        That’s fine and normal