this post was submitted on 19 Jul 2023
7 points (100.0% liked)

Asklemmy

42502 readers
1384 users here now

A loosely moderated place to ask open-ended questions

Search asklemmy πŸ”

If your post meets the following criteria, it's welcome here!

  1. Open-ended question
  2. Not offensive: at this point, we do not have the bandwidth to moderate overtly political discussions. Assume best intent and be excellent to each other.
  3. Not regarding using or support for Lemmy: context, see the list of support communities and tools for finding communities below
  4. Not ad nauseam inducing: please make sure it is a question that would be new to most members
  5. An actual topic of discussion

Looking for support?

Looking for a community?

~Icon~ ~by~ ~@Double_[email protected]~

founded 5 years ago
MODERATORS
 

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.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 0 points 11 months ago (2 children)

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?

[–] [email protected] 2 points 11 months ago* (last edited 11 months ago) (1 children)

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/

[–] [email protected] 2 points 11 months 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.

[–] [email protected] 1 points 11 months 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.