Pwned is a simple command-line python script to check if you have a password that has been compromised in a data breach. This script uses haveibeenpwned API to check whether your passwords were leaked during one of the many breaches of online services.
This API uses k-Anonymity model that allows a password to be searched for by partial hash in order to anonymously verify if a password was leaked without disclosing the searched password.
How Script Works?
Also Read – Flux-Keylogger : Modern Javascript Keylogger With Web Panel
Git Installation
#clone the repo
$ git clone https://github.com/sameera-madushan/Pwned.git
#change the working directory to Pwned
$ cd Pwned
#install the requirements
$ pip3 install -r requirements.txt
Usage
python pwned.py -p <your password here>
What Are Bash Comments? In Bash scripting, comments are notes in your code that the…
When you write a Bash script in Linux, you want it to run correctly every…
Introduction If you’re new to Bash scripting, one of the first skills you’ll need is…
What is Bash Scripting? Bash scripting allows you to save multiple Linux commands in a file and…
When it comes to automating tasks on Linux, Bash scripting is an essential skill for both beginners…
Learn how to create and use Bash functions with this complete tutorial. Includes syntax, arguments,…