6.5 Million LinkedIn Password Hashes Leaked
401–410 of 547 posts
Re: 6.5 Million LinkedIn Password Hashes Leaked
#402Earlier quoted context omitted.
on another note, my fairly complex alphanumeric+symbol password IS in the dump, though not prepended truncated with 0's and the other one I found, which my coworker admitted was too short and alpha only, was in the dump with prepended 0's. This could validate the fact that the truncated hashes are actually already cracked.
Mine was 5 characters, alpha and numeric, but no special characters. It was in there, prepended with 0's. Whoops. At the very least, it should have been longer.
Re: 6.5 Million LinkedIn Password Hashes Leaked
#403Quick sample from persons I polled: 2 password hashes were not in the file, 1 was there and cracked, 1 was there and not cracked yet.
As bad as it is, this can be a great case to raise the awareness of good password management.
Re: 6.5 Million LinkedIn Password Hashes Leaked
#404Earlier quoted context omitted.
Here's node.js: $ echo linkedin | xargs node -e "var x = require('crypto').createHash('sha1').update(process.argv[1]).digest('hex'); console.log([x, '00000' + x.substring(5)]);" 7728240c80b6bfd450849405e8500d6d207783b6 0000040c80b6bfd450849405e8500d6d207783b6
Hi - what does " xargs node -e " do? Thank you
$ node -e "console.log('Hello, world.')"
Hello, world.
[xargs] allows you to pipe the output of one command as an argument to another command. By default it will show up at the tail end of the second command's arg list, but if you want to interleave it you can use -I flag: $ echo /usr/share/dict/words | xargs head -5
A
A's
AOL
AOL's
$ echo petard | xargs -I {} grep {} /usr/share/dict/words
petard
petard's
petards
[xargs node -e] therefore allows text from STDIN to inserted into a script to be evaluated by the node interpreter, accessible via process.argv: $ echo is dog this yes | xargs node -e "console.log(process.argv.slice(1).sort().reverse().join(' ').toUpperCase())"
YES THIS IS DOGRe: 6.5 Million LinkedIn Password Hashes Leaked
#405Re: 6.5 Million LinkedIn Password Hashes Leaked
#406Of course, the preposterous restrictions that websites put on passwords, like maximum password length, will make this idea harder to put into practice.
Re: 6.5 Million LinkedIn Password Hashes Leaked
#407If you're a Windows user and you want to check if your password is in the file.
(1) download the passwords file from http://www.mediafire.com/?n307hutksjstow3
(2) the download is a RAR file, so you'll need to have WinRAR installed to extract it.
(3) to get the sha1 version of your password, go to duckduckgo.com and type:
sha1 yourpassword
(4) copy the result, except for the first 6 or so characters
(5) open a DOS command prompt (WindowsKey+R and type CMD)
(6) type (quotes required where indicated): find "sha1hash" sha1.txt
(note: to paste to the command prompt is right-click)
Example: The sha1 hash of the password 'password' is: 5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8
Remove first six characters: e4c9b93f3f0682250b6cf8331b7ee68fd8
enter at command prompt: find "e4c9b93f3f0682250b6cf8331b7ee68fd8" sha1.txt
result:
---------- SHA1.TXT
000001e4c9b93f3f0682250b6cf8331b7ee68fd8Re: 6.5 Million LinkedIn Password Hashes Leaked
#408Earlier quoted context omitted.
Obligatory shell one-liner: grep `echo -n password | shasum | cut -c6-40` hacked.txt
Prefix the whole command with a space to avoid dumping your password into your bash history: " grep `echo -n yourpassword | shasum | cut -c6-40` SHA1.txt"
grep `read -sp "password: "; echo "$REPLY" | tr -d "\n" | shasum | cut -c6-40` hacked.txtRe: 6.5 Million LinkedIn Password Hashes Leaked
#409Earlier quoted context omitted.
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.
Do you remember when you first used this password at LinkedIn? It could help narrow the dates of the breach. Especially useful would be the presence of a strong password in the list that was subsequently changed. That might help determine its freshness, if the new password isn't present (although this may be an incomplete list from an ongoing breach).