Check the presence of a string in a blocklist of the most commonly used passwords (sourced from berzerk0 's Probable-Wordlists). Different sized lists are supported, with the default list containing 95,000 passwords.
This very simple Ruby library can be integrated into your registration/authentication system to prevent users from setting commonly used (and easy to guess) passwords.
This gem has a tiny memory footprint with an execution cost of approximately 1 ms for the default list size. A memory persistence option is available to further reduce execution time.
Gemfile:
gem 'password_blocklist'
Or install it yourself:
$ gem install password_blocklist
$ irb
require 'password_blocklist'
PasswordBlocklist.blocklisted?("pokemon")
=> true
PasswordBlocklist.blocklisted?("AccurateUnicornCoalPaperclip")
=> false
Pass a list_size
parameter to select a different list than the default (medium) size
PasswordBlocklist.blocklisted?('pokemon', :lg)
list_size | File name | File size | Passwords |
---|---|---|---|
xs | Top1575-probable-v2.txt |
12 KB | 1,575 |
sm | Top12Thousand-probable-v2.txt |
100 KB | 12,645 |
md (default) | Top95Thousand-probable.txt |
822 KB | 94,988 |
lg | Top304Thousand-probable-v2.txt |
2.8 MB | 303,872 |
xl | Top1pt6Million-probable-v2.txt |
15.9 MB | 1,667,462 |
Note the list size you select will use more memory and linearly affect the processing time.
The blocklist file is loaded on every call to PasswordBlocklist.blocklisted?
. Use PasswordBlocklist::Checker
to persist the blocklist in memory (approximately 0.8MB) if you would like to perform lots of password tests in quick succession.
require 'password_blocklist'
checker = PasswordBlocklist::Checker.new
=> #<PasswordBlocklist::Checker:0x3ff979c41758>
checker.blocklisted?("pokemon")
=> true
checker.blocklisted?("AccurateUnicornCoalPaperclip")
=> false
You can also use a list size other than the default 'md' list
checker = PasswordBlocklist::Checker.new(:xl)
=> #<PasswordBlocklist::Checker:0x3ff979c41758>
checker.blocklisted?("pokemon")
=> true
password_blocklist supports MRI Ruby 2.5+ and Ruby 3.x. The specific Ruby versions we build and test on can be found on this Github Action workflow file.
This library was renamed to password_blocklist in v0.5.0
To easily migrate across:
- Update your Gemfile to use
password_blocklist
and runbundle
- Rename all instances of original Module
sed -i s/PasswordBlacklist/PasswordBlocklist/g ./**/*.rb
- Rename all method calls
sed -i s/blacklisted?/blocklisted?/g ./**/*.rb
- One last rename
sed -i s/password_blacklist/password_blocklist/g ./**/*.rb
- Verify the correct files have been updated and your code remains functional
After checking out the repo, run bin/setup
to install dependencies. Then, run rake spec
or rspec
to run the tests. You can also run bin/console
for an interactive prompt that will allow you to experiment. Use bin/benchmark
to run some benchmarks.
To install this gem onto your local machine, run bundle exec rake install
.
To release a new version, update the version number in version.rb
, and then run bundle exec rake release
, which will create a git tag for the version, push git commits and tags, and push the .gem
file to rubygems.org.
Run bundle exec rake spec
to manually launch specs.
Bug reports and pull requests are welcome on GitHub at https://www.github.com/gchan/password_blocklist.
- Fork it ( https://github.com/gchan/password_blocklist/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
password_blocklist is Copyright (c) 2017 Gordon Chan and is available as open source under the terms of the MIT License.
The Probable-Wordlists data files are licensed under CC BY-SA 4.0 (Creative Commons Attribution-ShareAlike 4.0 International)