Earlier quoted context omitted.
That wouldnbe still pain text actually, because it's easy to have a table for hash -> char. Chararcters being limited by their numbers.
Fine. Refer to my detailed answer below that shows longer hashing difficult to bruteforce.
The “Cobra Effect” that is disabling paste on password fields
221–230 of 450 posts
Re: The “Cobra Effect” that is disabling paste on password fields
#222Earlier quoted context omitted.
So, login form can just clear clipboard instead in onsubmit() handler.
Hopefully there is nothing important in the clipbkard, like some data that the user will attempt to submit a second time after logging in. It sounded like a good idea at first, but now I want my +1 back :p
Re: The “Cobra Effect” that is disabling paste on password fields
#223Earlier quoted context omitted.
SSN's in the US are not unique, though they are only used by one person at a time.
"The Social Security Administration does not reuse Social Security numbers" https://en.wikipedia.org/wiki/Social_Security_number#Exhaust...
Re: The “Cobra Effect” that is disabling paste on password fields
#224Earlier quoted context omitted.
It's amazing to me how insecure email is these days. If you know somebody's email, and you have a plausible reason to have a conversation with them, you can very easily take over their email account and reset the password on every account attached to it. I often wonder how much the security of email (and by extension, every other account online) depends on people just not knowing how simple and easy it is to break in…
"If you know somebody's email, and you have a plausible reason to have a conversation with them, you can very easily take over their email account and reset the password on every account attached to it." Not if they self provide their own email (by running their own mailserver).
Re: The “Cobra Effect” that is disabling paste on password fields
#225Not that I necessarily agree with that notion (just make it easy for me to change it again) but that's the idea. I thought.
Re: The “Cobra Effect” that is disabling paste on password fields
#226Here in Norway, almost all financial and government institutions allow a form of authentication called BankID ( https://www.bankid.no/en/company/ ). I use the mobile variant and it works for all government related stuff like taxes, health, relocation notices and also with all banks both when logging in and paying bills, signing contracts etc. It is a legally binding identification akin to signing a paper. The procedu…
Re: The “Cobra Effect” that is disabling paste on password fields
#227Fortunately, it's not hard to get around this on desktop (for Mac at least) with an applet like Paste Typer. But when I see this on iOS it infuriates me. I use 1Password to generate strong (long) passwords and having to type them out manually is a huge PIA.
Re: The “Cobra Effect” that is disabling paste on password fields
#228Earlier quoted context omitted.
Yes. This is to protect against attackers obtaining your full plaintext password on your end, for example by phishing or installing keyloggers. In practice this is a much bigger security threat in the online banking world than someone doing the same by compromising the bank's systems - even if that were to happen they can easily re-verify your identity and issue you with a new password, and you really shouldn't be us…
How does this prevent key logging attacks? You still type in those characters. And secondly, that just immediately made it a hell of a lot easier to brute force your way through the passwords!
Re: The “Cobra Effect” that is disabling paste on password fields
#229Earlier quoted context omitted.
So they attacker just has to run the keylogger for enough time...
The attacker needs to both be able to read the page and key log every keystroke and be able to associate as single letter, digit, or symbol to you password and not only that to the correct placement within the password. This is virtually impossible to achieve by any effective means. They ask random characters from your password in a random order if you login into your bank twice a week it most likely will a year or m…
Actually it's very simple to achieve.
First, those digits will not be randomly placed among all the things you've typed, but they'd follow some specific patterns (the most obvious one being you typing all of part --due to autocomplete-- of the bank's url).
(Of course if you can run a keylogger you can also check what website is loaded on the browser and log that information alongside the keys too, but you don't even need to go that far).
So, we established that the attacker checking the keylogger logs can trivially tell - "now they're typing their banking password".
If they also knew the correct placement that would be handy, but they can do without it too. Just knowing those N characters are from your password (in any order) really improves the possibilities they need to search.
Even if it takes a year, either they are very dedicated to you as a special (large bank account) profile target, so they can wait, or they are logging tens of thousands, via some malware, so it's still worth it to wait.
Re: The “Cobra Effect” that is disabling paste on password fields
#230I always assumed that the reason paste is disabled on change password forms is to prevent you from changing it to something you don't know. The whole point of making you type it twice is so that you get it right. If you type the password once and paste it twice, that is moot. Not that I necessarily agree with that notion (just make it easy for me to change it again) but that's the idea. I thought.