pwned-search/README.md

22 lines
687 B
Markdown
Raw Normal View History

2019-03-12 22:38:34 +01:00
# pwned-search
Pwned Password API lookup
2019-03-12 22:41:07 +01:00
- Required libaries:
* requests: `pip install requests`
2019-03-12 22:41:07 +01:00
Usage:
* `python pwned.py` reads passwords from standard input;
2019-03-13 11:42:26 +01:00
* `python pwned.py <[file-with-passwords]` reads passwords from
a file;
* `another-command | python pwned.py` reads
passwords written to standard output by another command;
* `python pwned.py [password]` checks passwords given as command line
arguments (beware the password may be saved in shell history and that
other users on the system ma be able to observe the command line).
2019-03-12 22:41:07 +01:00
2019-03-13 11:42:26 +01:00
Thanks to those who fixed my dodgy code :)
2019-03-12 22:41:07 +01:00
Have fun! Oh, and if you find one of your own passwords, change it asap!