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!
- Open-ended question
- 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.
- Not regarding using or support for Lemmy: context, see the list of support communities and tools for finding communities below
- Not ad nauseam inducing: please make sure it is a question that would be new to most members
- An actual topic of discussion
Looking for support?
Looking for a community?
- Lemmyverse: community search
- sub.rehab: maps old subreddits to fediverse options, marks official as such
- !lemmy411@lemmy.ca: a community for finding communities
~Icon~ ~by~ ~@Double_A@discuss.tchncs.de~
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Note that this disables all DOM/JavaScript clipboard events, so sites that need custom clipboard handling (like Google Docs) won't work properly if you try to copy and paste.
What you can instead do is:
$0.value = 'password'
and press enter, with the correct password of course.But then you'll have to display your password in plaintext (could be a problem around other people) and leave a trace in the console.
That's true. You could instead try to unattach the paste event handler, but that's more effort and isn't a one-liner. There's probably a browser extension for it.
I usually don't have other people behind me when using my computer, but most of my passwords are 30+ characters and randomly generated, so I'm not too worried about someone seeing it for the short period it takes me to paste it into the console the run
clear()
to clear the console.