Skip to content

Instantly share code, notes, and snippets.

@jefftriplett
Created June 6, 2012 18:09
Show Gist options
  • Select an option

  • Save jefftriplett/2883670 to your computer and use it in GitHub Desktop.

Select an option

Save jefftriplett/2883670 to your computer and use it in GitHub Desktop.
check to see if your linked in password was compromised via @schmichael
$ curl -s http://schmichael.com/files/LinkedInPasswordHashes.txt.bz2 | bzip2 -cd | grep `python -c 'import hashlib,os;print hashlib.sha1("YOUR LINKEDIN PASSWORD").hexdigest()[5:]'`
# me preferred method:
$ wget http://schmichael.com/files/LinkedInPasswordHashes.txt.bz2
$ cat LinkedInPasswordHashes.txt.bz2 | bzip2 -cd | grep `python -c 'import hashlib,os;print hashlib.sha1("YOUR LINKEDIN PASSWORD").hexdigest()[5:]'`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment