Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.11 KB

README.md

File metadata and controls

29 lines (20 loc) · 1.11 KB

amipwned v2.0

A python tool that automates the process of using haveibeenpwned's API without exposing your passwords to the internet. Basically, it hashes the entered password with SHA1, then uses only the first 5 characters of the hash in the web request made to the API, and give back the number of that password has been found in previous data breaches, without sending your clear-text passwords or its full hashes within the web request to the internet. You can either give it one password or a file of passwords, and it will do the work for you! You can also check the full demonstration of v1.0 on youtube: https://youtu.be/dpbL-VvLhTA

amipwnedv2.0.mp4

requirements

python requests library:

Linux

> pip install requests

Windows

> python -m pip install requests

usage

> python amipwned -p [PASSWORD]
> python amipwned -f [FILE]

example

> python amipwned -p "password123"
> python amipwned -p "passwords.txt"

get help

> python amipwned --help
> python amipwned -h