Who has 123456 as their password in 2016!? Oh, wait... 120,417 people apparently. :: head in hands ::
Passwords for 32M Twitter accounts may have been hacked and leaked
191–199 of 199 posts
Re: Passwords for 32M Twitter accounts may have been hacked and leaked
#192Twitter also does 2-Factor Auth. If you value your Twitter account, in addition to changing your password (which hopefully is unique amongst your accounts), also activate 2FA.
I am trying to activate that as we speak, but I never get the SMS. I tried 6 times in the last 3 hours. I guess it's overloaded or broken at least for my phone number (german mobile phone).
Re: Passwords for 32M Twitter accounts may have been hacked and leaked
#193Earlier quoted context omitted.
With bcrypt you can set a parameter which determines how slow it is. So if hardware gets faster, you can change the parameter. (brcrypt uses 2^n iterations where n is the parameter.) So it doesn't matter on what hardware, if you want bcrypt to take 1 second on modern hardware (for any value of "modern"), you can.
It seems like implementing a security strength which is a function of the current practical CPU speed is a recipe which could lead to disaster in the future, mainly because of how reluctant some companies are to change existing systems once they are in place. The concept actually makes sense, but it kind of assumes that the strength of the security will be increased at the same rate of which technology progresses, wh…
Re: Passwords for 32M Twitter accounts may have been hacked and leaked
#194Earlier quoted context omitted.
And don't forget, that every 18 months, the amount of processing power you get for a modest price, doubles.
Not anymore. It's hard to get specific numbers about a trend that just changed. But the double every 18 months is now clearly wrong. We've got a couple of approximately 27 months doubling, but that is past too. My bet is that we won't get a fixed number ever again.
Re: Passwords for 32M Twitter accounts may have been hacked and leaked
#195Earlier quoted context omitted.
Then why even bother with bcrypt?
Because something with a cryptographic hash, like sha256, you can do millions (or in some cases billions) of hashes per second on the same GPU. Password hashes, like bcrypt, PBKDF2 and scrypt, are massively slower. That doesn't mean they're uncrackable, it just means they are expensive to crack, so a strong password in a well implemented password hash will take a long time (and cost a lot of money) to crack, by which…
Re: Passwords for 32M Twitter accounts may have been hacked and leaked
#196Earlier quoted context omitted.
Not anymore. It's hard to get specific numbers about a trend that just changed. But the double every 18 months is now clearly wrong. We've got a couple of approximately 27 months doubling, but that is past too. My bet is that we won't get a fixed number ever again.
I'm not sure the fastest per core speed for the last 5 years in CPUs is significantly faster.. more cores, more caches for some operations, but not nearly the growth we used to see.
So maybe that's the way for computers to become much faster, making everything around the CPU go faster. Integrate the RAM and the GPU on the chip. Superfast SSDs. Etc.
Re: Passwords for 32M Twitter accounts may have been hacked and leaked
#197Earlier quoted context omitted.
But I can back up the secret in multiple places, and as another commenter mentioned, TOTP is an open spec, so I don't have to rely on exactly one sim card being in range of a cell tower. I have options. My bank requires SMS confirmation every time I send money online, and when I was in the US for 10 days, even with my SIM, I couldn't get SMS's, and thus couldn't do banking. This is extremely annoying.
How is TOTP being an open spec relevant? If $TOTP_APP does not work when you need it, it doesn't really matter. Even with a backed up secret. All I'm really saying is that limited options does not mean "broken". It just means limited options.
Re: Passwords for 32M Twitter accounts may have been hacked and leaked
#198If anyone is able to help me, I'd appreciate them emailing me. You can find my email under my account.
It would be a huge help!
Re: Passwords for 32M Twitter accounts may have been hacked and leaked
#199Earlier quoted context omitted.
Right, but you would still bypass the rate limiting of the server whether that be login attempts, http requests per second, firewall rules, latency or whatever when checking.
That's another rate limiting that has nothing to do with the hash strength. Good password hashing functions have internal rate limits that reduce the likelihood of anyone being able to break the hashes easily because they will be expensive even when fully implemented in hardware. For how long are they resilient it's another question but bcrypt is pretty good, it's quite slow, and is expensive to implement in ASIC/FPG…