#password #pattern #pattern-matching #strength #security #estimation #date

zxcvbn

An entropy-based password strength estimator, originally for Javascript by Dropbox

26 releases (11 stable)

2.2.2 Mar 19, 2023
2.2.1 Apr 2, 2022
2.2.0 Mar 15, 2022
2.1.2 Oct 11, 2021
0.2.0 Dec 21, 2016

#87 in Authentication

Download history 21664/week @ 2023-11-20 18587/week @ 2023-11-27 20049/week @ 2023-12-04 17337/week @ 2023-12-11 11691/week @ 2023-12-18 4227/week @ 2023-12-25 15491/week @ 2024-01-01 18836/week @ 2024-01-08 20716/week @ 2024-01-15 21576/week @ 2024-01-22 27410/week @ 2024-01-29 17471/week @ 2024-02-05 28956/week @ 2024-02-12 25343/week @ 2024-02-19 32850/week @ 2024-02-26 31938/week @ 2024-03-04

119,473 downloads per month
Used in 31 crates (22 directly)

MIT license

1MB
5K SLoC

zxcvbn

Version License

Overview

zxcvbn is a password strength estimator based off of Dropbox's zxcvbn library. Through pattern matching and conservative estimation, it recognizes and weighs 30k common passwords, common names and surnames according to US census data, popular English words from Wikipedia and US television and movies, and other common patterns like dates, repeats (aaa), sequences (abcd), keyboard patterns (qwertyuiop), and l33t speak.

Consider using zxcvbn as an algorithmic alternative to password composition policy — it is more secure, flexible, and usable when sites require a minimal complexity score in place of annoying rules like "passwords must contain three of {lower, upper, numbers, symbols}".

  • More secure: policies often fail both ways, allowing weak passwords (P@ssword1) and disallowing strong passwords.
  • More flexible: zxcvbn allows many password styles to flourish so long as it detects sufficient complexity — passphrases are rated highly given enough uncommon words, keyboard patterns are ranked based on length and number of turns, and capitalization adds more complexity when it's unpredictable.
  • More usable: zxcvbn is designed to power simple, rule-free interfaces that give instant feedback. In addition to strength estimation, zxcvbn includes minimal, targeted verbal feedback that can help guide users towards less guessable passwords.

Installing

zxcvbn can be added to your project's Cargo.toml under the [dependencies] section, as such:

[dependencies]
zxcvbn = "2"

zxcvbn has a "ser" feature flag you can enable if you require serialization support via serde. It is disabled by default to reduce bloat.

zxcvbn follows Semantic Versioning.

zxcvbn targets the latest stable Rust compiler. It may compile on earlier versions of the compiler, but is only guaranteed to work on the latest stable. It should also work on the latest beta and nightly, assuming there are no compiler bugs.

Usage

Full API documentation can be found here.

zxcvbn exposes one function called zxcvbn which can be called to calculate a score (0-4) for a password as well as other relevant information. zxcvbn may also take an array of user inputs (e.g. username, email address, city, state) to provide warnings for passwords containing such information.

Usage example:

extern crate zxcvbn;

use zxcvbn::zxcvbn;

fn main() {
    let estimate = zxcvbn("correcthorsebatterystaple", &[]).unwrap();
    println!("{}", estimate.score()); // 3
}

Other fields available on the returned Entropy struct may be viewed in the full documentation.

Contributing

Any contributions are welcome and will be accepted via pull request on GitHub. Bug reports can be filed via GitHub issues. Please include as many details as possible. If you have the capability to submit a fix with the bug report, it is preferred that you do so via pull request, however you do not need to be a Rust developer to contribute. Other contributions (such as improving documentation or translations) are also welcome via GitHub.

License

zxcvbn is open-source software, distributed under the MIT license.

Dependencies

~4–6MB
~104K SLoC