Check if your password has been pwned using awesome ';--have i been pwned? API.

Piotr Czajkowski 8fb68e337d islower() wasn't needed hace 4 años
win 957058e103 Updated binary hace 6 años
.gitignore 28bb9ff292 Added .dSYM hace 6 años
LICENSE.md 6dfd4df247 Initial commit hace 6 años
README.md 4c1ed8f341 Formatting again hace 6 años
curl.c 99359d59a5 Understand your data structures! hace 5 años
curl.h 39b4e0f5b0 Don't need it there hace 6 años
makefile 1239dda664 Added -Wshadow hace 5 años
pwned.c 8fb68e337d islower() wasn't needed hace 4 años
sha.c 1a7ba18e95 A bit safer hace 5 años
sha.h 2fc0857811 Cosmetics hace 6 años

README.md

Pwned Password

Fun project to utilize awesome ';--have i been pwned? Passwords API. It generates SHA1 hash for the password you provide as an argument and then grabs the range of hashes, basing on first 5 characters of the hash, from the service and checks if your hash is among them. So your password, nor its hash, never leaves your computer.

Usage is simple:

./pwned <password>

It'll print "This is how many times your password was pwned:" and a number if your password is in ';--have i been pwned? DB, else it'll print "Password not pwned!". Enjoy!

You can find Windows 64-bit binary and necessary libs in win subfolder.