Skip to content

Instantly share code, notes, and snippets.

View Elte156's full-sized avatar

Tony Pagaduan Elte156

View GitHub Profile
@Elte156
Elte156 / pwnedPasswordChecker.sh
Created February 24, 2019 04:55
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…
#!/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
#