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
#!/usr/bin/env bash | |
### | |
# Pwned Password Checker | |
# This script will accept a file that lists passwords (on each line) | |
# It will anonymously check if that password has ever been pwned through | |
# the haveibeenpwned.com API service. Your raw passwords are secure and | |
# not transmitted anywhere. For more information, please read how the API | |
# works at https://haveibeenpwned.com/API/v2#PwnedPasswords | |
# |