Not only does the credit bureau max out their password length, you have a small list of available non-alphanumeric characters you can use, and no spaces. Also you cannot used a plused email address, and it had an issue with my self hosted email alias, forcing me to use my gmail address.

Both Experian and transunion had no password length limitations, nor did they require my username be my email address.

Update: I have been unable to log into my account for the last 3 days now. Every time I try I get a page saying to call customer service. After a total of 2 hours on hold I finally found the issue, you cannot connect to Equifax using a VPN. In addition there is no option for 2FA (not even email or sms) and they will hang up on you if you push the issue of their security being lax. Their reasoning for lax security and no vpn usage is “well all of our other customers are okay with this”.

  • davel@lemmy.ml
    link
    fedilink
    English
    arrow-up
    158
    ·
    23 days ago

    Yeah well, if you’re so smart let’s see you write a website in COBOL.

  • Scott@lem.free.as
    link
    fedilink
    English
    arrow-up
    90
    ·
    23 days ago

    This implies they’re storing the plaintext password.

    Ideally the password would be hashed with a salt and then stored. Then it’s a fixed length field and it shouldn’t matter how long the password is.

    • Helix 🧬@feddit.org
      link
      fedilink
      English
      arrow-up
      35
      arrow-down
      3
      ·
      23 days ago

      Or a very very old database system, possibly DB2, where you can’t change the column limits or data types after the fact.

      • xthexder@l.sw0.com
        link
        fedilink
        arrow-up
        10
        ·
        22 days ago

        If they’re hashing, the column size should be irrelevant. Ideally the database should never see the plaintext password in the first place (though I could understand calculating the hash in the query itself). If they’re not hashing, they should really be rewriting their database anyway.

      • xthexder@l.sw0.com
        link
        fedilink
        arrow-up
        6
        ·
        edit-2
        22 days ago

        I’d rather see a paper explaining the flaws with salted passwords rather than “just use this instead”.

        My initial reaction is that this overcomplicates things for the majority of use-cases, and has way more to configure correctly compared to something basic like a salted sha256/sha512 hash that you can write in any language’s standard library.

        If the database of everyone’s salted password hashes gets leaked, this still gives everyone plenty of time to change passwords before anything has a chance of cracking them. (Unless you’re about to drop some news on me about long time standard practices being fundamentally flawed)

        • delirious_owl@discuss.online
          link
          fedilink
          arrow-up
          1
          ·
          21 days ago

          Wut. Is the competition not enough data for you? This is how we got AES.

          Can you name a single popular language where Argon2 isn’t implemented in a stamdard library?

          • xthexder@l.sw0.com
            link
            fedilink
            arrow-up
            1
            ·
            21 days ago

            I think you’re missing the point of what I’m asking. In what way are regular salted passwords insecure? Sure you can keep adding extra steps to encryption, but at a certain point you’re just wasting CPU cycles.

            I have no doubts about Argon2 being secure, I just think the extra steps are unnecessary for anything I would build (i.e. not touching financial transactions or people’s SSNs). By design argon2 uses a lot of memory and CPU time to make bruteforce attacks much harder, but that’s more of a downside when you’re just doing basic account logins on a low end server.

            I’ll happily retract my point about external dependencies. It’s available in most languages, and notably std C++ contains neither argon2 or sha256/512 hashing, so that kind of makes my original point invalid anyway.

    • ShepherdPie@midwest.social
      link
      fedilink
      arrow-up
      23
      ·
      23 days ago

      Banks aren’t much better. Up until just a couple years ago, the Treasury Direct website (to buy bonds/etc from the US Treasury) forced you to use a god damned on-screen keyboard to input your password and the passwords were not case sensitive. I’m pretty sure it also only read the first X number of characters of your input because I recall that people tried typing extra characters after their passwords and it would still accept it as valid, though I could be conflating this with some other archaic site.

      • nocturne@sopuli.xyzOP
        link
        fedilink
        arrow-up
        12
        ·
        23 days ago

        You are unable to paste your password into the “confirm password” field. I thought I was going to have to type it in, but Bitwarden’s autofill worked.

        • ShepherdPie@midwest.social
          link
          fedilink
          arrow-up
          3
          ·
          23 days ago

          The first part I’m sure about because I had to create a bookmark of a line of javascript that would bypass the on-screen keyboard and allow you to autofill the password. It was sometime in the last 3 or 4 years that they finally joined the 1990s and updated it

  • shortwavesurfer@lemmy.zip
    link
    fedilink
    arrow-up
    55
    ·
    23 days ago

    Financial institution security is quite frankly a freaking joke. My bank only has the options for 11 character passwords at maximum. It’s like oh come on that is way too easy these days

    • cm0002@lemmy.world
      link
      fedilink
      arrow-up
      18
      ·
      23 days ago

      Oh but wait! That non-customizable account number user ID that you have to wait for in the mail is definitely top notch security!

    • bassomitron@lemmy.world
      link
      fedilink
      English
      arrow-up
      13
      arrow-down
      1
      ·
      23 days ago

      Honestly, that’s a sign to me that your bank doesn’t take cybersecurity seriously and would possibly consider switching. Mine has amazing security as well as fraud detection. Sometimes it’ll even send me a text to verify a purchase if their software thinks it’s weird I got across town too quickly, though that’s pretty rare so it isn’t overly aggressive/inconvenient.

      • PlexSheep@infosec.pub
        link
        fedilink
        arrow-up
        2
        ·
        22 days ago

        In Germany at least, I hear that banks have weird law requirements for these weird security things, like photoTAN.

        I’d be much happier if they’d just let me do my usual setup with password, totp and my hardware token.

        • Trainguyrom@reddthat.com
          link
          fedilink
          English
          arrow-up
          3
          ·
          edit-2
          21 days ago

          In the US the FDIC sets security requirements for banks and audits annually, and they keeps raising requirements every year or so. At this point its just easier for a bank to invest in following current best practices and keep updating to the current best practices than to keep chasing every new finding on the FDIC audits each year

          Source: I worked in IT at a bank for a while

  • kingthrillgore@lemmy.ml
    link
    fedilink
    arrow-up
    53
    arrow-down
    1
    ·
    edit-2
    22 days ago

    A 20 character password of case insensitive letters and numbers is quite unbreakable (taking billions of years to brute force). Still, what a strange way to announce your database is old and you probably aren’t hashing your password with anything stronger than MD5. Or worse.

    • Toribor@corndog.social
      link
      fedilink
      English
      arrow-up
      30
      ·
      22 days ago

      My default is to generate a 32 character password and store it in a password manager. Doesn’t matter to me how many characters it has since I’m just going to copy and paste it anyway.

      Pretty surprising how many places enforce shorter passwords though… I had a bank that had a maximum character limit of 12. I don’t bank with them anymore. Short password limits is definitely is an indicator of bad underlying security practices.

    • 🅿🅸🆇🅴🅻@lemmy.world
      link
      fedilink
      arrow-up
      21
      ·
      22 days ago

      A hash has a fixed length, including MD5. There’s no reason to cap password (input) Iength. You can hash the whole bible and still get the same length hash. So either they don’t even hash it, they’re idiots, or they try to be unnecessarily cautious to avoid some other limit / overflow, like POST max size (which would still be counted in at least KB, not several characters). The limit on what special characters you can use is also highly suspicious - that’s not how you deal with injections / escaping your inputs.

      • drivepiler@lemmy.world
        link
        fedilink
        arrow-up
        2
        ·
        edit-2
        21 days ago

        Hashing takes longer the longer the string is, so it technically could impact performance if many people with very long passwords log in simultaneously. 20 characters is ridiculous though, you could probably cap it at hundreds and still be completely fine.

  • Ellia Plissken@lemm.ee
    link
    fedilink
    English
    arrow-up
    48
    arrow-down
    1
    ·
    23 days ago

    the Ring app (I think) forced me to change my Wi-Fi password because I wasn’t allowed to use ampersands. according to support it’s because they “use ampersands in the code”

      • FuzzyRedPanda@lemm.ee
        link
        fedilink
        English
        arrow-up
        31
        ·
        23 days ago

        It deeply saddens me when people pay money for locked down hardware that’s not only designed to spy on them, but their family, friends, and neighbors as well. Ring, Amazon Echo, Google Home, that creepy Facebook robot screen…all insecure spyware.

      • Ellia Plissken@lemm.ee
        link
        fedilink
        English
        arrow-up
        2
        ·
        22 days ago

        yeah I only have a ring for my outdoor cameras. I was considering switching my indoor system yo ring as my alarm company keeps raising their prices but I’m not putting ring cameras inside my house. especially because the privacy shutters on them are manual

    • Puttaneska@lemmy.world
      link
      fedilink
      arrow-up
      3
      ·
      22 days ago

      I encountered something like this at work. It wasn’t pass related, it was just a means of getting people to make text responses. Ampersands were replaced with some gibberish format, which annoyed everyone.

      I got some kind of explanation from our tech people, which I understood to mean that ampersand was used to indicate that what followed was live code. Turning the ampersand into gibberish text was a safety measure to stop mischief.

      I’ve noticed ampersand replacements in some news feeds too

  • ℍ𝕂-𝟞𝟝@sopuli.xyz
    link
    fedilink
    English
    arrow-up
    30
    ·
    22 days ago

    Imagine having to contract with a company in order for them not to fuck your life up with your own data. This is ridiculous.

    • sik0fewl@lemmy.ca
      link
      fedilink
      arrow-up
      1
      arrow-down
      1
      ·
      21 days ago

      You signed a contract? Pretty sure they’re going to fuck it up either way and they definitely have all your data.

    • toastal@lemmy.ml
      link
      fedilink
      arrow-up
      20
      ·
      22 days ago

      My bank disables paste as has code checking if the browser is greater than Netscape Navigator 4.

        • toastal@lemmy.ml
          link
          fedilink
          arrow-up
          1
          ·
          edit-2
          22 days ago

          I wrote a TamperMonkey script. 😅 I needed to so I could use my password manager. How dare I.

          Should be a general web dev usability note: always aim to make your code to be friendly for scraping & userStyles/userScripts. If a client isn’t updating shit, at least users can easily fix things. This is also another point against this Tailwind-only trend since you tend to lose anything semantic in the DOM & have nothing to select on.

    • otp@sh.itjust.works
      link
      fedilink
      arrow-up
      7
      ·
      22 days ago

      Yup. My bank was even “translating” passwords to PINs behind the scene specifically so your password for the website would be the same as your password on the telephone.

  • CubitOom@infosec.pub
    link
    fedilink
    English
    arrow-up
    26
    ·
    23 days ago

    I also like that the only type of MFA that all 3 agencies implement is text/phone call. Cause likes there’s nonway someone could spoof a phone number and then unfreeze your credit.

    • krolden@lemmy.ml
      link
      fedilink
      arrow-up
      5
      ·
      edit-2
      22 days ago

      Financial companies ans banks and stuff have to follow regulations on their MFA method. That why you can’t just use any OTP authenticator and are stuck with email/SMS.

      • The Doctor@beehaw.org
        link
        fedilink
        English
        arrow-up
        5
        ·
        22 days ago

        In case anybody’s curious about what those are:

        The biggest reason they use phone calls or SMS, however, is because they don’t want to go to the hassle of getting an in-house MFA service (a TOTP backend, in other words), approved, pen tested, analyzed, verified… all things considered, it’s faster and easier to go with a service like Twilio that already did all that legwork. A couple of years back I worked for a company in just that position, and after we did all the legwork, research, and consultation with the independent third party specialists trying to run our own TOTP would have easily doubled the yearly cost because of all the compliance stuff.

        • krolden@lemmy.ml
          link
          fedilink
          arrow-up
          3
          ·
          22 days ago

          Adding TOTP would be cheaper in the long run than continuing to pay those SMS rates. I dont think its about any kind of extra hassle they have to deal with. More of terrible NIST standards written by the center for internet security, which is a for profit corporation that apparently nist allows to write all their standards

          • The Doctor@beehaw.org
            link
            fedilink
            English
            arrow-up
            3
            ·
            21 days ago

            It really depends on the company. When I was working for that company a few jobs back, we crunched the numbers and the cost of C&C and IV&V (Certification and Accreditation; Independent Verification and Validation) for an in-house TOTP had one more zero to the left of the decimal point than the Twilio bill (added up for the year). Plus, for compliance we’d have to get everything re-vetted yearly.

            That’s kinda of the definition of government contracting. :) I think the only US government org that has actual govvies doing anything other than management is NASA.

  • TheReturnOfPEB@reddthat.com
    link
    fedilink
    English
    arrow-up
    20
    ·
    21 days ago

    short passwords because they are trying to save bandwidth for their next time their entire database structure is downloaded

    • azalty@jlai.lu
      link
      fedilink
      arrow-up
      2
      ·
      20 days ago

      They’re supposed to be hashed so that shouldn’t matter

      Unless that’s the joke or something

  • js10@reddthat.com
    link
    fedilink
    arrow-up
    19
    ·
    22 days ago

    I have seen this on a site before and I never understood why. Whats the point of limiting the length of the password? Its not to save storage space since the plain text isnt stored and the hash should be a uniform length. So whats the advantage?

    • digdilem@lemmy.ml
      link
      fedilink
      English
      arrow-up
      20
      ·
      22 days ago

      since the plain text isnt stored

      I’m not sure I’d accept a bet on that assumption.

    • Vivendi@lemmy.zip
      link
      fedilink
      arrow-up
      19
      ·
      22 days ago

      Their backend is really, REALLY garbage. Maybe it is some of that Microsoft trash that they snake oil’d into a lot of public offices and dumbass corpo managers, but whatever is running that site, has me concerned. You don’t do fucky things with passwords unless your backend is doing something really stupid.

    • daddy32@lemmy.world
      link
      fedilink
      arrow-up
      10
      ·
      22 days ago

      Calculating hashes is supposedly more expensive for longer strings. That could be used to simplify some kind of overload attack like DDOS.

      • xthexder@l.sw0.com
        link
        fedilink
        arrow-up
        10
        ·
        22 days ago

        If they’re not already rate-limiting login attempts that’s another huge problem…

      • ReveredOxygen@sh.itjust.works
        link
        fedilink
        English
        arrow-up
        5
        ·
        22 days ago

        If they’re using md5 (which would be in line with their security practices), the block size is 512 bits. That means that everything less than 64 characters is the same cost