https://github.com/alegrey91/hibp
A simple tool to check if your password has been pwned and found in some data leak.
https://github.com/alegrey91/hibp
password privacy
Last synced: 11 months ago
JSON representation
A simple tool to check if your password has been pwned and found in some data leak.
- Host: GitHub
- URL: https://github.com/alegrey91/hibp
- Owner: alegrey91
- License: apache-2.0
- Created: 2021-01-11T22:33:12.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-01-31T18:07:31.000Z (over 5 years ago)
- Last Synced: 2023-03-01T19:12:59.301Z (over 3 years ago)
- Topics: password, privacy
- Language: Go
- Homepage:
- Size: 52.7 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# HIBP
**HIBP** stand for **H**ave**IB**een**P**wned.
It is a simple client to communicate with [haveibeenpwned](haveibeenpwned.com) APIs.
This interact (for now) with the **breach** and the **password** endpoints.
## Usage
```
HIBP stand for HaveIBeenPwned.
It is a simple client to communicate with haveibeenpwned (haveibeenpwned.com) APIs.
Usage:
hibp [command]
Available Commands:
breach Check if a specific site has been compromised.
help Help about any command
password Check if your password has been found in some data set.
Flags:
--config string config file (default is $HOME/.hibp.yaml)
-h, --help help for hibp
-t, --toggle Help message for toggle
Use "hibp [command] --help" for more information about a command.
```
This actually supports passing arguments from **stdin**.
### Tip
To avoid logging your password into your history, consider to add the following line to your `.bashrc` file:
```bash
export HISTCONTROL='ignoreboth:erasedups'
```
## Installation
``` bash
go get -v github.com/alegrey91/hibp && go build
```