Earlier quoted context omitted.
fwiw, this could also be an elaborate hoax, given this facts. E.g. a list of simple password + combinations of the above simple password+"linkedin" variations.
My complex unique password is also on this list (full hash no 5 0's). So nope, not a hoax. Unbelievable/insulting they didn't even bother to salt.
6.5 Million LinkedIn Password Hashes Leaked
301–310 of 547 posts
Re: 6.5 Million LinkedIn Password Hashes Leaked
#302Um, pardon the obvious question, but does someone have a direct link to the hash file?
https://disk.yandex.net/disk/public/?hash=pCAcIfV7wxXCL/YPhO...
Re: 6.5 Million LinkedIn Password Hashes Leaked
#303Re: 6.5 Million LinkedIn Password Hashes Leaked
#304Earlier quoted context omitted.
And.. the node.js solution doesn't do what either the Perl or shell one liners do. It doesn't tell you whether the password was found in the file. All it does is print out a SHA1 hash of a string.
That's a trivial modification: $ echo linkedin | xargs node -e "var x = require('crypto').createHash('sha1').update(process.argv[1]).digest('hex'); console.log(x.substring(5));" | xargs -I {} grep {} hashes.txt I'm surprised at the backlash to what I thought was fun code golfing. No one called me names after I posted a simple Python solution that didn't check the file. For what it's worth I've changed my LI password…
Re: 6.5 Million LinkedIn Password Hashes Leaked
#305Can somebody recommend good reading material/book on how to handle passwords/encryption for practical everyday applications.
Re: 6.5 Million LinkedIn Password Hashes Leaked
#306Can somebody recommend good reading material/book on how to handle passwords/encryption for practical everyday applications.
Re: 6.5 Million LinkedIn Password Hashes Leaked
#307Re: 6.5 Million LinkedIn Password Hashes Leaked
#308Good Guy Startup Founder would cross reference this password list with their own password system and force those that match to reauthenticate and change their passwords. This wouldn't be difficult to do and your users would appreciate it.
Better Guy Startup Founder would be using salted hashes anyway and wouldn't even be able to run a cross-reference.
Re: 6.5 Million LinkedIn Password Hashes Leaked
#309Earlier quoted context omitted.
This isn't really the issue. The real issue is that MD5 (though these hashes are SHA1, which has the same problem) are too easily computed; they are practically byte-forceable. I don't need a rainbow table to compute hashes when I can slam out millions in short order using a GPU. You have a good point about needing to know the salt, but getting the salt is generally easy because it's usually stored in the same place…
Let's forget about bcrypt for a second. What prevents developers from adding a large DB-wide salt (in addition to normal salt) to every password? Wouldn't that prevent bruteforce attacks regardless of the hashing algorithm?