diff --git a/README.md b/README.md index 26d2a63..5962ce7 100755 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@

-Find Passwords for Compromised Email Accounts +OSINT Tool to Find Passwords for Compromised Email Accounts

@@ -42,13 +42,51 @@ chmod 777 install.sh ## Usage ```bash -python pwnedornot.py -h -usage: pwnedornot.py [-h] [-e EMAIL] [-f FILE] +python3 pwnedornot.py -h + +usage: pwnedornot.py [-h] [-e EMAIL] [-f FILE] [-d DOMAIN] [-n] [-l] + [-c CHECK] optional arguments: - -h, --help show this help message and exit - -e EMAIL, --email EMAIL Email account you want to test - -f FILE, --file FILE Load a file with multiple email accounts + -h, --help show this help message and exit + -e EMAIL, --email EMAIL Email Address You Want to Test + -f FILE, --file FILE Load a File with Multiple Email Addresses + -d DOMAIN, --domain DOMAIN Filter Results by Domain Name + -n, --nodumps Only Check Breach Info and Skip Password Dumps + -l, --list Get List of all pwned Domains + -c CHECK, --check CHECK Check if your Domain is pwned + +# Examples + +# Check Single Email +python3 pwnedornot.py -e +#OR +python3 pwnedornot.py --email + +# Check Multiple Emails from File +python3 pwnedornot.py -f +#OR +python3 pwnedornot.py --file + +# Filter Result for a Domain Name [Ex : adobe.com] +python3 pwnedornot.py -e -d +#OR +python3 pwnedornot.py -f --domain + +# Get only Breach Info, Skip Password Dumps +python3 pwnedornot.py -e -n +#OR +python3 pwnedornot.py -f --nodumps + +# Get List of all Breached Domains +python3 pwnedornot.py -l +#OR +python3 pwnedornot.py --list + +# Check if a Domain is Pwned +python3 pwnedornot.py -c +#OR +python3 pwnedornot.py --check ``` [![asciicast](https://asciinema.org/a/200225.png)](https://asciinema.org/a/200225)