this post was submitted on 19 Jul 2023
742 points (98.2% liked)

Asklemmy

43856 readers
1784 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_A@discuss.tchncs.de~

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.

(page 2) 50 comments
sorted by: hot top controversial new old
[–] eth0p@iusearchlinux.fyi 6 points 1 year ago* (last edited 1 year ago) (2 children)

A couple years back, I had some fun proof-of-concepting the terrible UX of preventing password managers or pasting passwords.

It can get so much worse than just an alert() when right-clicking.

The codepen.

A small note: It doesn't work with mobile virtual keyboards, since they don't send keystrokes. Maybe that's a bug, or maybe it's a security feature ;)

But yeah, best tried with a laptop or desktop computer.

How it detects password managers:

  • Unexpected CSS or DOM changes to the input element, such as an icon overlay for LastPass.

  • Paste event listening.

  • Right clicking.

  • Detecting if more than one character is inserted or deleted at a time.

In hindsight, it could be even worse by using Object.defineProperty to check if the value property is manipulated or if setAttribute is called with the value attribute.

load more comments (2 replies)
[–] HurlingDurling@lemm.ee 6 points 1 year ago (4 children)

I remember working at a company where this is the norm and their reasoning is that they don't want someone logging into their account at a public library and saving their ID and password on the browser (people do that) and then the next user can just log into this other person's account.

[–] nomadjoanne@lemmy.world 7 points 1 year ago (1 children)

I hate it when we all must suffer to protect the retarded... πŸ™„

[–] Rodeo@lemmy.ca 4 points 1 year ago

Even worse, in this case the "protection" (not pasting in a password field) doesn't even address the presented problem (users not logging out).

I hate when we all must suffer to support retards who think they're protecting us from retards but are actually inconveniencing us for no good reason.

load more comments (3 replies)
[–] CmdrShepard@lemmy.one 5 points 1 year ago (1 children)

You think this is bad? Up until a couple of months ago, the US treasury website forced you to use an on-screen keyboard to enter your password.

load more comments (1 replies)
[–] tetra@feddit.de 4 points 1 year ago (2 children)

I tend to use Firefox's "Inspect" context menu entry on the element and disable the paste/keydown/keyup event listeners in the element inspector.

load more comments (2 replies)
[–] Orionza@lemmy.zip 3 points 1 year ago

I have not encountered this yet. I'm bookmarking your tips. My passwords are generated, as I'm sure yours are. I have vision issues and can't see well enough at times to look at all those random characters individually to type in.

load more comments
view more: β€Ή prev next β€Ί