Last active
August 3, 2017 16:37
-
-
Save jcjones/8526836bef1aa6ab701460a5a0b8ae83 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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