Skip to content

Instantly share code, notes, and snippets.

@jcjones
Last active August 3, 2017 16:37
Show Gist options
  • Save jcjones/8526836bef1aa6ab701460a5a0b8ae83 to your computer and use it in GitHub Desktop.
Save jcjones/8526836bef1aa6ab701460a5a0b8ae83 to your computer and use it in GitHub Desktop.
import requests, getpass, hashlib
"""
Uses Troy Hunt's HaveIBeenPwned password check API.
https://haveibeenpwned.com/API/v2#PwnedPasswords
"""
rawpass = getpass.getpass().encode('utf-8')
passhash = hashlib.sha1(rawpass).hexdigest()
print("Checking hash: {}".format(passhash))
r = requests.get("https://haveibeenpwned.com/api/pwnedpassword/{}".format(passhash),
headers={"accept": "application/vnd.haveibeenpwned.v2+json"})
if r.status_code == 200:
print("Password listed as compromised")
elif r.status_code == 404:
print("Password not exposed here")
else:
print("Unexpected error: {} {}".format(r.status_code, r.text))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment