Earlier quoted context omitted.
It means passwords like dadada can be reversed from hashes.
It's not exactly happening in a vacuum. Emails and usernames from previous dumps help people figure out passwords for new accounts when many people are reusing the same silly password everywhere. For example someone else may have had dadada as a password and isuckat@passwords.com as their email, and their password was discovered via a separate breach on some other site. That other site used shit technology for securi…
Mark Zuckerberg's Twitter and Pinterest password was 'dadada'
21–30 of 58 posts
Re: Mark Zuckerberg's Twitter and Pinterest password was 'dadada'
#22Earlier quoted context omitted.
Can you prevent targeted attacks, or is salting the state of the art? What if the salt was derived from a key the user had to supply and wasn't stored anywhere?
> What if the salt was derived from a key the user had to supply and wasn't stored anywhere? If I understood you that is the same as demanding the user to input two strings for password authentication, one for salt and one for password, in which case you might just as well require the user to use a longer password.
Since most people walk around with their cellphones, you could even precompute a couple keys to unlock a site, for those times when there is no internet connection. Of course, your phone should be secured with a password and you should be able to revoke the keys if anything gets lost.
Re: Mark Zuckerberg's Twitter and Pinterest password was 'dadada'
#23Earlier quoted context omitted.
It wasn't salted, but even then a targeted effort could almost certainly crack a password as bad as dadada almost immediately for a fast hash like sha1.
That's what I find hard to believe though. LinkedIn, a $20B giant, doesn't salt its passwords and uses something as weak as sha1? I would expect even a 1-person startup to do better than that.
Re: Mark Zuckerberg's Twitter and Pinterest password was 'dadada'
#24I guess he really liked that Volkswagen commercial?[1] [1] https://www.youtube.com/watch?v=jdccNAOvPHg
Re: Mark Zuckerberg's Twitter and Pinterest password was 'dadada'
#25Earlier quoted context omitted.
That doesn't need to be true for this to have happened. Zuck is a high profile target, probably the hackers just prioritised cracking his account and such a weak password would be found reasonably quickly even using bcrypt
Can you prevent targeted attacks, or is salting the state of the art? What if the salt was derived from a key the user had to supply and wasn't stored anywhere?
Re: Mark Zuckerberg's Twitter and Pinterest password was 'dadada'
#26Earlier quoted context omitted.
It's not exactly happening in a vacuum. Emails and usernames from previous dumps help people figure out passwords for new accounts when many people are reusing the same silly password everywhere. For example someone else may have had dadada as a password and isuckat@passwords.com as their email, and their password was discovered via a separate breach on some other site. That other site used shit technology for securi…
It bothered me more than it should have that you used isuckat@passwords.com instead of isuck@passwords.com for your example :)
Re: Mark Zuckerberg's Twitter and Pinterest password was 'dadada'
#27Earlier quoted context omitted.
That doesn't need to be true for this to have happened. Zuck is a high profile target, probably the hackers just prioritised cracking his account and such a weak password would be found reasonably quickly even using bcrypt
Can you prevent targeted attacks, or is salting the state of the art? What if the salt was derived from a key the user had to supply and wasn't stored anywhere?
Modern state of the art for targeted attacks is to use slow hash algorithms, such as bcrypt. They have little effect on normal operations, as most users will get the right password within a few tries, so you're adding a negligible amount of time per user. But the extra time has a huge effect when an attacker is trying to calculate millions of hashes for a single user.
Re: Mark Zuckerberg's Twitter and Pinterest password was 'dadada'
#28Re: Mark Zuckerberg's Twitter and Pinterest password was 'dadada'
#29Earlier quoted context omitted.
Can you prevent targeted attacks, or is salting the state of the art? What if the salt was derived from a key the user had to supply and wasn't stored anywhere?
Salting has zero effect on the targeted cracking of a single password. Salting protects against rainbow tables - sets of pre-calculated hashes plain-text to passwords. These are dangerous because an attacker has a large amount of time to pre-calculate hashes, but (hopefully) only a small amount of time to calculate after a dump before the password is changed. However, if you are starting from scratch and have a singl…
Re: Mark Zuckerberg's Twitter and Pinterest password was 'dadada'
#30I guess he really liked that Volkswagen commercial?[1] [1] https://www.youtube.com/watch?v=jdccNAOvPHg