Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jcgay/am-i-pwned
Uses ';--have i been pwned? dataset to verify if your passwords have been compromised
https://github.com/jcgay/am-i-pwned
Last synced: 5 days ago
JSON representation
Uses ';--have i been pwned? dataset to verify if your passwords have been compromised
- Host: GitHub
- URL: https://github.com/jcgay/am-i-pwned
- Owner: jcgay
- License: mit
- Created: 2018-04-08T16:33:57.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-04-09T06:19:09.000Z (over 6 years ago)
- Last Synced: 2024-06-20T07:56:29.837Z (5 months ago)
- Language: Go
- Size: 909 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Am I Pwned?
Uses [';--have i been pwned?](https://haveibeenpwned.com) dataset to verify if your passwords have been compromised.
# Installation
go get -u github.com/jcgay/am-i-pwned
# Usage## Verify a password
$> am-i-pwned password [candidate]
or type your password interactively using:$> am-i-pwned password
A SHA1 fragment of your password will be send to `https://haveibeenpwned.com` API and will be compared locally with service response. See [Searching a password by range](https://haveibeenpwned.com/API/v2#SearchingPwnedPasswordsByRange) for more information.The number of occurence of the password in the database will be print in the console, if this number is 0, no entry has been found.
## Check your LastPass account
$> am-i-pwned lastpass
All your passwords will be checked (same method as [single password check](#verify-a-password)) using [LastPass CLI](https://github.com/lastpass/lastpass-cli).
You'll have to install [LastPass CLI](https://github.com/lastpass/lastpass-cli) and be logged to use this command.## Help
$> am-i-pwned help [command]