https://github.com/awaitlink/zxcvbn-cli
A simple CLI tool to check password strength using zxcvbn
https://github.com/awaitlink/zxcvbn-cli
cli-app password password-strength rust-crate zxcvbn
Last synced: 7 months ago
JSON representation
A simple CLI tool to check password strength using zxcvbn
- Host: GitHub
- URL: https://github.com/awaitlink/zxcvbn-cli
- Owner: awaitlink
- License: mit
- Created: 2019-05-31T19:33:10.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-21T09:37:25.000Z (over 2 years ago)
- Last Synced: 2025-02-28T07:54:56.397Z (7 months ago)
- Topics: cli-app, password, password-strength, rust-crate, zxcvbn
- Language: Rust
- Homepage:
- Size: 609 KB
- Stars: 9
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# ❮zxcvbn-cli❯
[![version][badges/version]][crates.io/zxcvbn-cli]
[![downloads][badges/downloads]][crates.io/zxcvbn-cli]
[![license][badges/license]][license]A simple CLI tool to check password strength using [shssoichiro/zxcvbn-rs](https://github.com/shssoichiro/zxcvbn-rs), which is a Rust port of [dropbox/zxcvbn](https://github.com/dropbox/zxcvbn).
### Installation
```console
$ cargo install zxcvbn-cli
```### Updating
```console
$ cargo install zxcvbn-cli -f
```### Usage
There are multiple ways to use `zxcvbn-cli`:- Supply password via argument:
```console
$ zxcvbn [password]
```- Enter password via stdin:
```console
$ zxcvbn
```- Enter password via stdin, but don't show it or the sequence in output:
```console
$ zxcvbn -s
```### Examples
```console
$ zxcvbn zxcvbn
```
[![img/zxcvbn]][img/zxcvbn]```console
$ zxcvbn "Tr0ub4dour&3"
```
[![img/Tr0ub4dour_3]][img/Tr0ub4dour_3]```console
$ zxcvbn correcthorsebatterystaple
```
[![img/correcthorsebatterystaple]][img/correcthorsebatterystaple][crates.io/zxcvbn-cli]: https://crates.io/crates/zxcvbn-cli
[license]: https://github.com/u32i64/zxcvbn-cli/blob/master/LICENSE
[changelog]: https://github.com/u32i64/zxcvbn-cli/blob/master/CHANGELOG.md[badges/version]: https://img.shields.io/crates/v/zxcvbn-cli.svg?style=for-the-badge
[badges/downloads]: https://img.shields.io/crates/d/zxcvbn-cli.svg?style=for-the-badge
[badges/license]: https://img.shields.io/crates/l/zxcvbn-cli.svg?style=for-the-badge[img/zxcvbn]: https://raw.githubusercontent.com/u32i64/zxcvbn-cli/master/img/zxcvbn.png
[img/Tr0ub4dour_3]: https://raw.githubusercontent.com/u32i64/zxcvbn-cli/master/img/Tr0ub4dour_3.png
[img/correcthorsebatterystaple]: https://raw.githubusercontent.com/u32i64/zxcvbn-cli/master/img/correcthorsebatterystaple.png