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

  • Dremor@lemmy.world
    shield
    M
    link
    fedilink
    English
    arrow-up
    2
    ·
    edit-2
    9 months ago

    Hello, c/Games mod here.

    This post has been reviewed as valid by the mod team

    For everyone infosec culture, hashing and salting password consist in using one-way mathematical functions to encrypt passwords. It is a very commonly used security practice to make it more difficult for an attacker that was able to steal a database to obtain the password. As the website is unable to decrypt said password (thank to the one way mathematical function), the only way to send you back your password in this manner is to have it unhashed and unsalted in his database.

    But

    In the current case, this is a registration email, which may have been sent before the initial hashing and salting. In this case we cannot say for sure if Larion Studios indeed have unhashed and unsalted password in his database.

  • nickwitha_k (he/him)@lemmy.sdf.org
    link
    fedilink
    English
    arrow-up
    70
    arrow-down
    5
    ·
    9 months ago

    That’s very unlikely. It’s running UBB Threads, which, from what I can tell, has an auth subsystem, which au minimum would do hashing. If it’s providing you with a default at sign-up, that’s different and is what appears to be a configurable setting.

    If it is completely generated for you, here’s what probably happening:

    1. User creation module runs a password generator and stores this and the username in memory as string variables.
    2. User creation module calls back to storage module to store new user data in db, including the value of the generated password var.
    3. Either the storage module or another middleware module hashes the password while preparing to store.
    4. Storage module reports success to user creation.
    5. User creation module prints the vars to the welcome template and unloads them from memory.

    TL;DR as this is running on a long-established commercial php forum package, with DB storage, it is incredibly unlikely that the password is stored in the DB as plaintext. At most it is likely stored in memory during creation. I cannot confirm, however, as it is not FOSS.

    • Cabrio@lemmy.worldOP
      link
      fedilink
      English
      arrow-up
      14
      arrow-down
      6
      ·
      9 months ago

      It sends the user generated password, not an auto generated one.

      • hex@programming.dev
        link
        fedilink
        English
        arrow-up
        35
        arrow-down
        4
        ·
        9 months ago

        Yeah if they send the password in an email in plain text that’s not storing it. You can send the email before you store the password while it’s still in memory and then hash it and store it.

        • Cabrio@lemmy.worldOP
          link
          fedilink
          English
          arrow-up
          13
          arrow-down
          60
          ·
          edit-2
          9 months ago

          Stored in memory is still stored. It’s still unencrypted during data processing. Still bad practice and a security vulnerability at best. Email isn’t E2E encrypted.

          • beefcat@lemmy.world
            link
            fedilink
            English
            arrow-up
            34
            arrow-down
            4
            ·
            edit-2
            9 months ago

            there is no possible way to handle sensitive data without storing it in memory at some point

            it’s where you do all the salting, hashing, and encrypting

            emailing out credentials like this after sign up is certainly not best practice, but probably not a huge deal for a video game forum of all things. if you are re-using passwords then you already have a way bigger problem.

            • JackbyDev@programming.dev
              link
              fedilink
              English
              arrow-up
              14
              arrow-down
              1
              ·
              9 months ago

              emailing out credentials like this after sign up is certainly not best practice,

              Understatement of the year right here. Everyone in this thread is more interested in dunking on OP for the few wrong statements they make rather than focusing on the fact that a service is emailing their users their password (not an autogenerated “first time” one) in plaintext in an email.

            • RonSijm@programming.dev
              link
              fedilink
              English
              arrow-up
              4
              arrow-down
              1
              ·
              9 months ago

              there is no possible way to handle sensitive data without storing it in memory at some point

              Since we’re nitpicking here - technically you can. They could run hashing client side first, and instead of sending the password in plain-text, you’d send a hashed version

                • RonSijm@programming.dev
                  link
                  fedilink
                  English
                  arrow-up
                  2
                  ·
                  9 months ago

                  No, the client side hashing doesn’t substitutes anything server side, it just adds an extra step in the client

              • ilinamorato@lemmy.world
                link
                fedilink
                English
                arrow-up
                1
                ·
                9 months ago

                This opens up the possibility of replay attacks in the case of data breaches, though, and those are much more common than http mitm attacks (made even less likely with the proliferation of https).

                I’m not entirely sure whether hashing twice (local and server) is wise, having not thought through that entire threat vector. Generally I try to offload auth as much as I can to some sort of oauth provider, and hopefully they’ll all switch over to webauthn soon anyway.

                • RonSijm@programming.dev
                  link
                  fedilink
                  English
                  arrow-up
                  1
                  ·
                  9 months ago

                  I’m not really sure how it opens up replay attacks, since it doesn’t really change anything to the default auth. There are already sites that do this.

                  The only difference is that instead of sending an http request of { username = "MyUsername", Password = "MyPassword" } changes to { username = "MyUsername", Password = HashOf("MyPassword") } - and the HashOf(“MyPassword”) effectively becomes your password. - So I don’t know how that opens up a possibility for replay attack. There’s not really any difference between replaying a ClearText auth request vs an pre-hashed auth request. - Because everything else server side stays the same

                  (Not entirely auth related), but another approach of client side decryption is to handle decryption completely client site - meaning all your data is stored encrypted on the server, and the server sends you an encrypted container with your data that you decrypt client side. That’s how Proton(Mail) works in a nutshell

          • oneiros@lemmy.blahaj.zone
            link
            fedilink
            English
            arrow-up
            24
            arrow-down
            4
            ·
            9 months ago

            Stored in memory is still stored.

            Given what I know about how computers accept user input, I am fascinated to hear what the alternative is.

            • Cabrio@lemmy.worldOP
              link
              fedilink
              English
              arrow-up
              5
              arrow-down
              38
              ·
              edit-2
              9 months ago

              You have the text input feed directly into the encryption layer without an intermediary variable. The plaintext data should never be passable to an accessible variable which it must be to send the plaintext password in the email because it’s not an asynchronous process.

              I’m surprised so many people are getting hung up on basic infosec.

              • frezik@midwest.social
                link
                fedilink
                English
                arrow-up
                15
                arrow-down
                4
                ·
                9 months ago

                Are you suggesting to do all this on the frontend before it goes to the backend?

                • Atomic@sh.itjust.works
                  link
                  fedilink
                  English
                  arrow-up
                  9
                  arrow-down
                  5
                  ·
                  edit-2
                  9 months ago

                  If they can send you, your own password in plain text. That’s already bad enough. Just not good practise.

                • Cabrio@lemmy.worldOP
                  link
                  fedilink
                  English
                  arrow-up
                  7
                  arrow-down
                  26
                  ·
                  edit-2
                  9 months ago

                  The front end to backend traffic should be encrypted, hashing occurs on the backend. The backend should never have access to a variable with a plaintext password.

                  I’m going to have to stop replying because I don’t have the time to run every individual through infosec 101.

  • voxel@sopuli.xyz
    link
    fedilink
    English
    arrow-up
    64
    arrow-down
    13
    ·
    edit-2
    9 months 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
      arrow-up
      25
      arrow-down
      1
      ·
      9 months ago

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

        • glitches_brew@lemmy.world
          link
          fedilink
          English
          arrow-up
          12
          arrow-down
          1
          ·
          9 months ago

          As the designated email dev at my company I can confidently say this is not true.

          Not saying that this specific email is persisted, but almost all that I work with are. It’s a very common practice.

          • tocopherol@lemmy.dbzer0.com
            link
            fedilink
            English
            arrow-up
            1
            ·
            9 months ago

            I wonder how much this varies depending on the amount of data it would require to store the emails of a company. I know nothing about this subject, but does it occur where companies with very large email lists would forgo storing those types of emails to save data costs?

            • glitches_brew@lemmy.world
              link
              fedilink
              English
              arrow-up
              2
              ·
              9 months ago

              In my experience it varies a lot. Even in our own system certain emails are stored differently. There are a few “we legally have to deliver this email and might need to prove it later” notifications. We store a PDF of those in s3. For others we might just save the data, a sent timestamp, and a key for which email visual template was used.

              I also thought of a counter argument to my point overnight. We don’t store one super duper high volume email which is the email that only has an MFA code. We would also absolutely never ever dream about allowing a plaintext password in an email, so we’re probably following different patterns in the first place.

      • voxel@sopuli.xyz
        link
        fedilink
        English
        arrow-up
        4
        arrow-down
        3
        ·
        edit-2
        9 months 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

      • Thadrax@lemmy.world
        link
        fedilink
        English
        arrow-up
        6
        arrow-down
        6
        ·
        9 months ago

        Generated emails usually don’t get saved, as soon as it is delivered it will be gone.

    • dangblingus@lemmy.world
      link
      fedilink
      English
      arrow-up
      19
      arrow-down
      6
      ·
      9 months 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.

      • wim@lemmy.sdf.org
        link
        fedilink
        English
        arrow-up
        12
        ·
        9 months ago

        I find that very hard to believe. While it is less common nowadays, many, if not most, mailing list and forum software sent passwords in plaintext in emails.

        A lot of cottage industry web apps also did the same.

      • bnjmn@lemmy.world
        cake
        link
        fedilink
        English
        arrow-up
        4
        ·
        9 months 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

      • EssentialCoffee@midwest.social
        link
        fedilink
        English
        arrow-up
        2
        ·
        9 months ago

        I’ve had service providers physically mail my own password to me before. Just crazy.

        Always use unique passwords for every site.

      • Umbraveil@lemmy.world
        link
        fedilink
        English
        arrow-up
        3
        arrow-down
        3
        ·
        9 months ago

        Is it though? While it certainly isn’t something I’d recommend, and I’ve encountered it before, if E2E encryption exists we cannot assume a data exposure had occurred.

        What they do on the backend has nothing to do with this notification system. Think of it as one of these credentialess authentication systems that send a ‘magic link’ to your inbox.

    • darkkite@lemmy.ml
      link
      fedilink
      English
      arrow-up
      19
      arrow-down
      8
      ·
      9 months 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@sopuli.xyz
        link
        fedilink
        English
        arrow-up
        3
        arrow-down
        1
        ·
        edit-2
        9 months 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…)

    • tb_@lemmy.world
      link
      fedilink
      English
      arrow-up
      22
      arrow-down
      12
      ·
      edit-2
      9 months 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@sopuli.xyz
        link
        fedilink
        English
        arrow-up
        16
        arrow-down
        1
        ·
        edit-2
        9 months 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.

        • wim@lemmy.sdf.org
          link
          fedilink
          English
          arrow-up
          1
          arrow-down
          5
          ·
          9 months ago

          It’s not a bad idea and it is often done, just not in a browser/webapp context.

            • wim@lemmy.sdf.org
              link
              fedilink
              English
              arrow-up
              3
              ·
              edit-2
              9 months ago

              Sorry, I should have included an example in my comment to clarify, but I was in a rush.

              HMAC is a widely used technique relies on hashing of a shared secret for verifying authenticity and integrity of a message, for example.

      • Kilamaos@lemmy.world
        link
        fedilink
        English
        arrow-up
        12
        arrow-down
        9
        ·
        9 months 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

          • Vegasimov@reddthat.com
            link
            fedilink
            English
            arrow-up
            13
            arrow-down
            8
            ·
            9 months ago

            When you create an account you type your password in. This gets sent to the server, and then it is hashed and stored

            So there is a period of time where they have your unhashed password

            This is true of every website you have ever made a password on

              • Vegasimov@reddthat.com
                link
                fedilink
                English
                arrow-up
                1
                arrow-down
                2
                ·
                9 months ago

                I’ve never even heard of the game studio I’m not defending them, I was replying to the person who said the company should never have your unhashed password, and explaining that they have to at some point in the process

            • dangblingus@lemmy.world
              link
              fedilink
              English
              arrow-up
              2
              arrow-down
              9
              ·
              9 months ago

              So why would an agent at Larian have man-in-the-middle access between the password being sent to the server, and the auto-hash?

      • Hexarei@programming.dev
        link
        fedilink
        English
        arrow-up
        4
        arrow-down
        2
        ·
        9 months ago

        Um. Yeah, because you provided it to them. They have to have it in plain text in order to hash it.

  • inclementimmigrant@lemmy.world
    link
    fedilink
    English
    arrow-up
    48
    arrow-down
    12
    ·
    edit-2
    9 months ago

    While sending your password in plaintext over email is very much a bad idea and a very bad practice, it doesn’t mean they store your password in their database as plaintext.

      • tonkatwuck@lemmynsfw.com
        link
        fedilink
        English
        arrow-up
        3
        arrow-down
        1
        ·
        9 months ago

        It’s possible that this email is a result of forum user creation, so during that submission the plaintext password was available to send to the user. Then it would be hashed and stored.

        • Serinus@lemmy.world
          link
          fedilink
          English
          arrow-up
          3
          arrow-down
          2
          ·
          9 months ago

          I don’t know why you’d give them any benefit of the doubt. They should have already killed that with this terrible security practice.

          But yeah, sure, maybe this one giant, extremely visible lapse in security is the only one they have.

          • tonkatwuck@lemmynsfw.com
            link
            fedilink
            English
            arrow-up
            1
            arrow-down
            1
            ·
            9 months ago

            I’m just explaining how user authentication works for most web applications. The server will process your plaintext password when your account is created. It should then store that as a hashed string, but it can ALSO send out an email with that plaintext password to the user describing their account creation. This post does not identify that passwords are stored in plaintext, it just identifies that they email plaintext passwords which is poor security practice.

            • Serinus@lemmy.world
              link
              fedilink
              English
              arrow-up
              2
              arrow-down
              1
              ·
              9 months ago

              This particular poor security practice is very much like a roach. If you see one you have a bigger problem.

              See, I can also repeat myself as though you didn’t understand the first time.

    • Serdan@lemm.ee
      link
      fedilink
      English
      arrow-up
      14
      arrow-down
      15
      ·
      9 months ago

      Passwords shouldn’t be stored at all though 🤷‍♂️

      • Vlixz@lemmy.world
        link
        fedilink
        English
        arrow-up
        14
        arrow-down
        2
        ·
        9 months ago

        You mean plaintext passwords right? Ofcourse then need to store your (hashed)password!

        • TheFogan@lemmy.world
          link
          fedilink
          English
          arrow-up
          3
          arrow-down
          1
          ·
          9 months ago

          Point is, a hash isn’t a password. giving the most you don’t need tech knowledge analogy, it’s like the passwords fingerprint.

          The police station may keep your daughters fingerprint so that if they find a lost child they can recognize it is your daughter beyond any doubt. Your daughters fingerprints, is like a hash, your daughter is a password.

          The police should not store your daughter… that’s bad practice. The fingerprints are all they should store, and needless to say the fingerprints aren’t your daughter, just as a hash isn’t a password.

      • miroppb@kbin.social
        link
        fedilink
        arrow-up
        2
        arrow-down
        1
        ·
        9 months ago

        BitWarden is awesome. Been using it since 2 of my colleagues went to work for them

        • Itsamelemmy@lemmy.zip
          link
          fedilink
          English
          arrow-up
          4
          ·
          edit-2
          9 months ago

          Firefox is extremely easy to get your password from behind the *** if it autofills. Requires physical access, but literally takes seconds. Right click the field, inspect and change the field type from password to text.

            • Itsamelemmy@lemmy.zip
              link
              fedilink
              English
              arrow-up
              1
              ·
              9 months ago

              On mobile I’m assuming. I personally don’t know a way to bypass the fingerprint locks. And if you’re also having Firefox create random difficult passwords, its significantly better than reusing the same one. So you’re probably a much harder target than the majority of people. I’d have to double check but I think even on desktop if you have a master password for Firefox and don’t just have logins auto filled you’re probably good there too.

  • 1984@lemmy.today
    link
    fedilink
    English
    arrow-up
    23
    arrow-down
    7
    ·
    edit-2
    9 months ago

    It’s 2023, I really hope people are not using the same password in multiple places. Password managers solved this problem a decade ago. Use one, with multi factor auth on important sites like email.

    • Honytawk@lemmy.zip
      link
      fedilink
      English
      arrow-up
      10
      ·
      9 months ago

      There are people who purposely forget their passwords, so they use the “forgot my password” link every time they need to login.

      Hard to hack them.

      • 1984@lemmy.today
        link
        fedilink
        English
        arrow-up
        8
        ·
        9 months ago

        Yeah some sites also dont have passwords, they just send a login link to your email every time.

        I prefer passwords so I don’t have to go to my email to log in, but I understand it’s easier for some people to do it that way. Your email address becomes your identity then.

    • emptyother@programming.dev
      link
      fedilink
      English
      arrow-up
      3
      arrow-down
      1
      ·
      9 months ago

      Oh, they are. I keep telling people to WRITE DOWN YOUR PASSWORDS, and NEVER use same password on two sites. They dont listen. Its a lot easier to just remember 1-4 variations of a password and use that than carry around a password notebook. And they think themselves safe.

      I’m thinking most people shouldnt use passwords at all anymore. They are a huge point of failure because people are people. We need something else to be the norm. How can we make hardware keys or something the norm for logging in? Have everyone carry around a bankcard-like thing that fit into every computer where people need credentials. Would’nt that be safer while still being accessible and convenient?

      • 1984@lemmy.today
        link
        fedilink
        English
        arrow-up
        4
        ·
        edit-2
        9 months ago

        There are yubikeys you can use to login, but it requires installing stuff on each computer you want to access. Nothing is simpler then passwords. :)

        I used a yubikey for a while, they are alright, but I could only use it for logging on to a computer, not for logging into specific sites. Even though I guess that could be solved with a password manager integration.

        • NaN@lemmy.sdf.org
          link
          fedilink
          English
          arrow-up
          2
          ·
          9 months ago

          FIDO2 can be used for passwordless log in on a few sites, but the site and browser need to support the feature (no extra installation). It sets a pin on the yubikey and when entered the key does all the authentication. It will likely be seen more as Apple “passkeys” gain more popularity, Windows and Android already have native support but don’t market as hard.

        • emptyother@programming.dev
          link
          fedilink
          English
          arrow-up
          2
          ·
          edit-2
          9 months ago

          Nothing is simpler than passwords. But we want something thats both simple and safe. Even for lazy people, tech-unsawy people, and people with bad memory.

          What if every pc came with a jubikey-ish reader and every website supported a browser api for it? Probably not jubikey, but something that fit in a wallet like bank cards do (but also was an open tech so that anyone can implement and sell cards). Wouldn’t it be both safer and simpler than passwords? It would take some time to turn around of course but the same was probably the case for https, 2fa, ipv6, and tpm’s.

          • NaN@lemmy.sdf.org
            link
            fedilink
            English
            arrow-up
            3
            ·
            9 months ago

            Those are called smart cards. Traditional smart cards needed centralized management of credentials, but FIDO2 smart cards exist that work like the keys. The reason tokens are more typically USB-based (or NFC) is every PC has USB, but most don’t have smart card readers.

          • Chobbes@lemmy.world
            link
            fedilink
            English
            arrow-up
            2
            ·
            9 months ago

            It would take some time to turn around of course but the same was probably the case for https, 2fa, ipv6, and tpm’s.

            Oh yeah… Definitely good IPv6 support everywhere. That really turned around, and we’re not dragging our feet on implementing IPv6 at all 🥲.

      • Chobbes@lemmy.world
        link
        fedilink
        English
        arrow-up
        2
        ·
        9 months ago

        Oh, they are. I keep telling people to WRITE DOWN YOUR PASSWORDS, and NEVER use same password on two sites. They dont listen. Its a lot easier to just remember 1-4 variations of a password and use that than carry around a password notebook. And they think themselves safe.

        Honestly, the best solution for this is a password manager and not a notebook. The average person is not going to come up with strong passwords on their own for every website. A password manager once setup can be more convenient than whatever they were doing before, so if you can get people to use one they’ll be in much better shape.

        I’m thinking most people shouldnt use passwords at all anymore. They are a huge point of failure because people are people. We need something else to be the norm. How can we make hardware keys or something the norm for logging in? Have everyone carry around a bankcard-like thing that fit into every computer where people need credentials. Would’nt that be safer while still being accessible and convenient?

        My understanding is that this is basically what the whole passkeys initiative is. I have sort of mixed feelings on it. Hardware tokens for logging in is great, but I worry about people stealing the hardware tokens from others. Mostly people are going to use their phones, though, which should have some other mechanism of authentication.

      • thisbenzingring@lemmy.sdf.org
        link
        fedilink
        English
        arrow-up
        1
        arrow-down
        2
        ·
        9 months ago

        suggest something like this

        use your favorite password but add the site to it

        so your lemmy password would be ilovemypasswordLEMMY

        and your reddit password would be ilovemypasswordREDDIT

        that way they can keep their shitty password but it won’t be the same password on every site and they have an easy way to remember what the proper password is for the site they want to accesss

        • wahming@monyet.cc
          link
          fedilink
          English
          arrow-up
          5
          arrow-down
          1
          ·
          edit-2
          9 months ago

          That’s horrible if you ever become the victim of a targeted attack. Compromise your password once on some random shitty site and they’ve got access to everything.

          It’s also quite likely that incidents involving password dumps will have crackers filtering the dumped data looking for exactly passwords like this.

          • thisbenzingring@lemmy.sdf.org
            link
            fedilink
            English
            arrow-up
            3
            ·
            9 months ago

            This will create individual passwords which is better than the same password everywhere. If it’s the least they will do, it’s better than not.

        • docwriter@lemmy.eco.br
          link
          fedilink
          English
          arrow-up
          3
          ·
          9 months ago

          I used to do this, but I realized that if someone got access to any of my passwords, they would easily spot the pattern.

          In the end, using a password manager and generating large random passwords for each site was the best solution I found.

          • thisbenzingring@lemmy.sdf.org
            link
            fedilink
            English
            arrow-up
            2
            ·
            9 months ago

            Still better than using the same password. My argument is if you can only convince them to do at least that, it’s better than every site using the same password

      • Nibodhika@lemmy.world
        link
        fedilink
        English
        arrow-up
        6
        arrow-down
        1
        ·
        9 months ago

        First of all they wouldn’t know there’s nothing worthwhile until they got in. But most importantly if you’re using the same password for everything since 91 there’s around a 0% chance that password hasn’t been leaked. This means that a random person can have access to everything that you have that’s not 2fa protected without you even noticing. You said that no one tried to get into your things, how would you know? Most places don’t let you know when someone login successfully, and a lot of other places do so with an email which the attacker can quickly delete.

        If you really use the same password for everything since a long while back anyone who knows your email address can get into anything yours, getting a hold of one of those password dumps is really easy, especially older ones.

        • AssPennies@lemmy.world
          link
          fedilink
          English
          arrow-up
          5
          ·
          9 months ago

          if you’re using the same password for everything since 91 there’s around a 0% chance that password hasn’t been leaked

          Plot twist, they’ve never had their password leaked due to never having a password.

          They spend every last waking moment trolling through public or university libraries to find computers that people haven’t logged out of, and are still logged into social media, dialup modems, irc, bbs, mainframes, etc. It’s these accounts they make posts from.

          Pretty lonely world when you only ever get to make one comment on one account at max like once a week. And then you never get to check the replies. You never get to check your email either, you don’t know if anyone has sent you and e-card for your birthday.

          Oh and not to speak of constantly getting kicked out of those libraries once the librarians recognize you. To the point where you have to move to yet another city to have any online time again.

          But hey, they’ve never had their password leak at least!

        • 🇰 🔵 🇱 🇦 🇳 🇦 🇰 ℹ️@yiffit.net
          link
          fedilink
          English
          arrow-up
          2
          arrow-down
          3
          ·
          edit-2
          9 months ago

          First of all they wouldn’t know there’s nothing worthwhile until they got in.

          I mean, you can read all my comments and posts publicly, and social media accounts and such are just about the only thing I’ve ever had passwords for. 🤷🏻‍♂️

          You finna steal my Lemmy account?

          Security is only important when you give a shit about what can be taken without it.

  • AlmightySnoo 🐢🇮🇱🇺🇦@lemmy.world
    link
    fedilink
    English
    arrow-up
    1
    ·
    9 months ago

    That doesn’t really mean that they store it in plain text. They sent it to you after you finished creating your account, and it’s likely that the password was just in plain text during the registration. The question still remains whether they store their outgoing emails (in which case yes, your password would still be stored in plain text on their end, not in the database though).

    • ono@lemmy.ca
      link
      fedilink
      English
      arrow-up
      0
      ·
      edit-2
      9 months ago

      Your guess is confirmed here.

      There are plans to update the forum, including for better security (the main issue with changing the forum software is concern over reliably migrating all of the existing content). After emailing (admittedly not current best practice), the passwords are hashed and only the hash is stored.

      …and later…

      The forum has been updated to https, and passwords are no longer being sent by email.

      Which raises the question of how old OP’s screen shot is.

      Also, no, the password would not necessarily still be stored in plain text on their end. The cleartext password used in that email might be only in memory, and discarded after sending the message. Depends on how the UBB forum software implemented it and how Larian’s mail servers are set up.

      EDIT: I just verified that this behavior has resurfaced since it was originally fixed. OP would do well to responsibly report it, rather than stirring up drama over a web forum account.

      • Asudox@lemmy.world
        link
        fedilink
        English
        arrow-up
        0
        ·
        edit-2
        9 months ago

        It is still a bad idea to send the password in plaintext via email. You never know when Bard will peek a look and then share your password along users as a demo account to try that forum.

        • Empricorn@feddit.nl
          link
          fedilink
          English
          arrow-up
          0
          ·
          edit-2
          9 months ago

          There’s a lot of reasons why emailing passwords is not the best practice… But AI bots stealing your password to give people free demos is a wild paranoid fever dream.

          EDIT: Apparently, I replied to a joke.

          • Asudox@lemmy.world
            link
            fedilink
            English
            arrow-up
            0
            arrow-down
            1
            ·
            edit-2
            9 months ago

            It is meant to be as a joke, of course the AI is not that dumb enough to give it away as free demo. Why am I being downvoted? Why don’t people understand jokes these days? Do I always have to include /s when making a sarcastic joke even though it is so obvious?