It’s 2023, why are websites actively preventing pasting into fields like passwords and credit card number boxes? I use a password manager for security, it’s recommended by my employer to use one, and it even avoids human error like accidentally fat-fingering keys, and best of all with the credit card number I don’t have to memorize anything or know a single digit/character!

I have to use the Don’t Fuck With Paste addon just to be able to paste my secrets into certain monthly billing websites; why is my electric provider and one of my banks so asinine that pasting cannot be allowed? I can only imagine downsides and zero upsides to this toxic dark-pattern behavior.

There is even a mention about this in NIST SP 800-63B, a standard for identity management that some companies must follow in the USA, which mentions forcefully rotating passwords and denying “password paste-in” as antiquated/bad advice:

Verifiers SHOULD permit claimants to use “paste” functionality when entering a memorized secret. This facilitates the use of password managers, which are widely used and in many cases increase the likelihood that users will choose stronger memorized secrets

Edit: I discovered that for Firefox users there’s a simpler way than exposing your secrets to someone’s third-party addon. Simply open about:config, search for dom.event.clipboardevents.enabled, and change it from true to false.

Edit 2: As some have pointed out, that config value interferes with regular functionality on some sites. Probably best to leave it alone unless you know what you’re doing.

  • iamak@infosec.pub
    link
    fedilink
    English
    arrow-up
    80
    arrow-down
    1
    ·
    1 year ago

    This is one of the dumbest shit ngl. My bank also does this. However they go one step further. They force a maximum 12 letter password and 1 character of each type (capital, small, number, symbol) is necessary. This actively reduces password security smh

    • lenathaw@lemmy.ml
      link
      fedilink
      English
      arrow-up
      22
      ·
      1 year ago

      Mine truncated the first 8 characters, when I discovered that I sent them a request to their cyber security department and they told me.of was by design.

      I closed my account over that bs

      • TheSacredOne@lemm.ee
        link
        fedilink
        English
        arrow-up
        8
        ·
        1 year ago

        It’s because they likely have an ancient backend that can’t fit it in the database field…

          • RIP_Apollo@feddit.ch
            link
            fedilink
            English
            arrow-up
            3
            arrow-down
            1
            ·
            1 year ago

            Good idea, although this wouldn’t tell you if they truncated the password at 9 characters instead (or 10 or 11 characters etc).

            So you would have to try different attempts without making too many in one sitting that gets you locked out.

            If you tried your password without the last character, then I think that would tell you if ANY truncation is being used (but it won’t tell you whether it happened at the 8th, 9th, 10th etc character). But that seems like the best thing to try first just to rule it out.

          • iamak@infosec.pub
            link
            fedilink
            English
            arrow-up
            1
            ·
            1 year ago

            I checked network logs. Apparently my bank encrypts both uid and password before sending. I put 8 chars and it gave error so I’m assuming no

          • lenathaw@lemmy.ml
            link
            fedilink
            English
            arrow-up
            1
            ·
            1 year ago

            that’s exactly how I figured it out. then asked for some friends and family with account in the same bank to validate

    • dekatron@lemmy.fmhy.ml
      link
      fedilink
      English
      arrow-up
      10
      ·
      1 year ago

      My bank also does this shit. It’s aggravating to use their website when every step along the way they put the burden of security on the user.

      Pasting is disabled on almost every text field, even for things like account numbers (which they make you type in twice) when you want to do a transfer. The only way to log in is to manually type in your username, password, and a damn captcha everytime. The 6 digit 2FA code is the icing on the cake. If you idle for a minute or two, they log you out and force you to go through the whole thing again.

      • iamak@infosec.pub
        link
        fedilink
        English
        arrow-up
        9
        ·
        1 year ago

        Banks make the worst possible UI and justify it by saying “security” xD

    • dom@lemmy.ca
      link
      fedilink
      English
      arrow-up
      4
      arrow-down
      28
      ·
      1 year ago

      Because people would write down their passwords? I wonder how many people use their browser’s built in password manager

      • chinpokomon@lemmy.ml
        link
        fedilink
        English
        arrow-up
        36
        ·
        edit-2
        1 year ago

        That’s one way it is weaker, but moreso because it reduces the entropy. If a user can provide a password which uses 26 letters, upper and lowercase, 10 numbers, and an unrestricted set of symbols, but for the sake of argument we’ll say 10, then there are a lot of possible combinations. If you are limited to only 12 possible at max, it is 46^12. Now you impose an artificial requirement that it is one of each, then it actually weakens that further by making the hacker know that there is one of each in there so it is 2626101046^8. Or roughly 910^19 vs. 1.3610^18. I personally try to use passwords which are between 16-20 characters long, or roughly 2*10^33. By restricting the total number of characters and forcing specific combinations, then the password is less cryptographically sound.

        Using this calculator, https://bitwarden.com/password-strength/, it is a difference of 3 hours vs. centuries using the bank’s mandate vs. only lowercase and 20 characters.

        Edit: Something seemed off about the math. Should have multiplied instead of added, but still less sound secure because there are imposed requirements. The biggest issue is that there is an upper limit of 12 characters.

        • dom@lemmy.ca
          link
          fedilink
          English
          arrow-up
          9
          arrow-down
          1
          ·
          1 year ago

          The 20 character requirement is kind of a huge component though.

          Sure. Banks should be enforcing that instead of special characters. But the vast majority of people would just choose “football” or “password” as their passwords if they weren’t required to do something more complex.

          I disagree with the argument that it’s less secure to require symbols in passwords as a blanket statement . It’s less secure to require symbols in passwords than if you are also enforcing much longer minimum passwords as well.

          • zzz@feddit.de
            link
            fedilink
            English
            arrow-up
            6
            ·
            1 year ago

            Sure. Banks should be enforcing that instead of special characters. But the vast majority of people would just choose “football” or “password” as their passwords if they weren’t required to do something more complex.

            Ironically though, something like

            IveLovedUsingFootballAsMyPassword!EverSinceThe1980s.

            as a password would be miles ahead of even the most random character combination possible, but which is only 12-20 characters long.

            And as an added bonus, the above example is practically guaranteed to have never been used before, in addition to being correct horse battery staple (that is, tremendously easy to remember).

            I hate when a website/app in this day and age imposes an absurdly low upper password character limit like 30. (cough looking at you, PayPal, when I re-set my password a few years ago it was freaking 20, not exaggerating).

            Shouldn’t password length below like 100 (or realistically, any length until it starts crashing the js behind it?) not matter anyways, since it’s all salted, peppered and hashed before further processing anyways?

            • evatronic@lemm.ee
              link
              fedilink
              English
              arrow-up
              10
              ·
              edit-2
              1 year ago

              There is no technical reason for there to be a maximum length on the user’s password.

              Watch:

              Here’s a password bitwarden generated for me:

              Bonded-Reforest-Prenatal7-Spoken-Straggler-Catcall

              Here’s the base64-encoded SHA3-512 hash for that password:

              Q2WaVLdTAg5T4xi3VB5PMI7GkAv3np9Usa2+uTMglbMcDDAdYXzUNgAzzYLoSWku/e007vkKfvSotzoriSKt4Q==

              Here’s the has for the password password:

              6adUhnNqVQr0/qhh4jeDBcSlVaBQlN7h3KL2iv6knMOlDo3m6hMepSExH01vsFShRugoL441/y5jaMGmLpCXFg==

              Notice how the thing the website should be storing in their database is exactly the same length, regardless of the input?

              For extra fun, here’s the hash for your sample password:

              GbxnrQ31PInMSu2ik2ZR5TefgXIInSJBxZ5zwcYmkRxzw07tZoxPqJbEmcbuTBpzCZzwLrqqcxz04p8ToGszRQ==

              Here’s a tool to generate your own hashes: https://www.liavaag.org/English/SHA-Generator/

              • r1veRRR@feddit.de
                link
                fedilink
                English
                arrow-up
                9
                ·
                1 year ago

                I mean, if we’re being pedantic, there’s a reasonable technical limit once the password reaches multiple MBs of data.

                But yes, there’s no good reason for the actual limits we’re seeing out in the wild.

                • zzz@feddit.de
                  link
                  fedilink
                  English
                  arrow-up
                  2
                  ·
                  1 year ago

                  I mean, if we’re being pedantic, there’s a reasonable technical limit once the password reaches multiple MBs of data.

                  But yes, there’s no good reason for the actual limits we’re seeing out in the wild.

                  Yes @evatronic, this is of course what I meant with “except if the js starts crashing maybe”. I’m aware that hashes end up with the same length, no worries 😄

            • dom@lemmy.ca
              link
              fedilink
              English
              arrow-up
              3
              ·
              1 year ago

              Yeah, I agree they should be requiring much longer minimum password lengths (and show users how to use passphrases). Max password lengths are also absurd.