Is it really necessary to portray an initiative to wipe out dangerous snakes as self-interested and imperialist?
The “Cobra Effect” that is disabling paste on password fields
91–100 of 450 posts
Re: The “Cobra Effect” that is disabling paste on password fields
#92Earlier quoted context omitted.
I know of some of those sites that randomise the location of keys and then hide the key labels on mousedown, I assume to try and avert that issue. (Curious as to whether it would actually work though.)
A hacker can get around that by also taking a screenshot when there is no mousedown event, it's literally one extra line of code.
Re: The “Cobra Effect” that is disabling paste on password fields
#93Earlier quoted context omitted.
HSBC has this really odd system where they only ask for the (e.g.) 1st, 6th, and 7th characters of your password. That implies that they store plaintext or something reversible...
They could be extracting the 1st, 6th and 7th characters, concat them and storing the hash (+salt) of the resulting string. That way they can check equality without storing the plaintext password. You could extend this by storing the hash of all 3-letter combinations of the password on entry. Then ask for a random combination of 3-letters.
Re: The “Cobra Effect” that is disabling paste on password fields
#94That said, we should never have let websites have this kind of control over the user agent. For the one time disabling right click was helpful (context menus in Google Docs), 99% of the time it's something dumb ("don't steal our images!").
Finally, I loved the comment about losing their security certificate. I'm sure the average CA will give you a cert for google.com if you ask nicely enough.
Re: The “Cobra Effect” that is disabling paste on password fields
#95Earlier quoted context omitted.
No amount of salting is going to make a 3-character recognizer secure.
The 1, 6, 7 is random
Re: The “Cobra Effect” that is disabling paste on password fields
#96I always assumed this anti-pasting was a requirement of some braindead auditor who insisted that this was a necessary security mechanism. If they aren't, there's a lot of "debt" in the passwords space, like Troy mentions. This is just something that will get better as websites get better. Webapps are much more complicated today than 5 years ago, on average, and as complexity increases things like user auth will get b…
Re: The “Cobra Effect” that is disabling paste on password fields
#97Earlier quoted context omitted.
They could be extracting the 1st, 6th and 7th characters, concat them and storing the hash (+salt) of the resulting string. That way they can check equality without storing the plaintext password. You could extend this by storing the hash of all 3-letter combinations of the password on entry. Then ask for a random combination of 3-letters.
You realize that this is trivial to brute force, though.
Re: The “Cobra Effect” that is disabling paste on password fields
#98Earlier quoted context omitted.
They could be extracting the 1st, 6th and 7th characters, concat them and storing the hash (+salt) of the resulting string. That way they can check equality without storing the plaintext password. You could extend this by storing the hash of all 3-letter combinations of the password on entry. Then ask for a random combination of 3-letters.
You realize that this is trivial to brute force, though.
Re: The “Cobra Effect” that is disabling paste on password fields
#99Earlier quoted context omitted.
Why though? A .txt file on the desktop is actually probably a lot more secure than using the same shitty password on every site.
A friend may get tempted to sneak a peek.
Re: The “Cobra Effect” that is disabling paste on password fields
#100Sometimes password managers don't recognize the target form fields correctly, so copy/paste is the next step. The act is even encouraged through the use of convenient helper buttons in the password managers.
However. In MacOs Sierra, Apple will introduce the Universal Clipboard feature. This means when someone copies a password on desktop, it would be available on their phone. Which is just one step away from being pasted, by mistake, into an IM chat or worse.
I'm uncomfortable with the idea that when I copy something it's being sent around to different devices, and available to everything running.
I've actually made the terrible mistake of doing that - pasting a password into a group chat my accident, because I didn't copy text correctly, and my last paste buffer was still around. Or messing up when using pbcopy/pbpaste in a shell script.
1Password for instance can actually reset the copy/paste buffer after some time, but the settings need to be enabled. I wonder if Apple has any kind of security around this planned. Maybe applications and scripts should not be able to access the paste buffer until the user explicitly allows it (via the act of using it)?