password_blacklist 0.2.0 → 0.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGELOG.md +18 -0
- data/README.md +5 -2
- data/data/{100k_passwords.txt → Top95Thousand-probable.txt} +94515 -99531
- data/lib/password_blacklist/checker.rb +1 -1
- data/lib/password_blacklist/version.rb +1 -1
- data/lib/password_blacklist.rb +7 -0
- data/password_blacklist.gemspec +12 -6
- metadata +38 -22
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: bccd4f7a39e75a1053ace700211a5e30c68dcc5753d021ec55aae6a9faadc018
|
4
|
+
data.tar.gz: 337741f0cf3ce246c45221ca6180e57b218cda12031e6cf64a622e65a2abf29f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b08c5b6cd3a24ffde9bf093178fcd07c9989fb757a010f26a72c15b840fbb4debf1697cf5763f001d2a35bf083c4b422d98ef230307066eaae43abfb9db29acd
|
7
|
+
data.tar.gz: '0947210ee42bb23cffb955c9d9b82f7644cacd14d464294ed0dfa69c2ab6d7ee3fbeb5cfafe086e14b2801ef79bd2649c2f14042ed4cb083fd5ce8e47639d762'
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,21 @@
|
|
1
|
+
0.4.1 / 2022-04-02
|
2
|
+
------
|
3
|
+
* Added a post-install message and deprecation message regarding renaming
|
4
|
+
this library.
|
5
|
+
* No other functional changes.
|
6
|
+
|
7
|
+
0.4.0 / 2021-08-10
|
8
|
+
------
|
9
|
+
Support Ruby 3.0. Thanks matssigge!
|
10
|
+
Update simplecov and coveralls development dependency versions. Thanks matssigge!
|
11
|
+
Update rake and bundler development dependency versions.
|
12
|
+
Fix benchmark code.
|
13
|
+
Add memory profiler to compare String, Array and Set.
|
14
|
+
|
15
|
+
0.3.0 / 2017-07-13
|
16
|
+
------
|
17
|
+
Use the "Probable-Wordlists" (https://github.com/berzerk0/Probable-Wordlists) wordlist. Thanks olbrich!
|
18
|
+
|
1
19
|
0.2.0 / 2017-07-12
|
2
20
|
------
|
3
21
|
Ignore password case sensitivity when testing a password. Thanks olbrich!
|
data/README.md
CHANGED
@@ -3,7 +3,8 @@
|
|
3
3
|
|
4
4
|
[![Build Status](https://travis-ci.org/gchan/password_blacklist.svg?branch=master)](https://travis-ci.org/gchan/password_blacklist) [![Coverage Status](https://coveralls.io/repos/gchan/password_blacklist/badge.svg?branch=master)](https://coveralls.io/r/gchan/password_blacklist?branch=master) [![Code Climate](https://codeclimate.com/github/gchan/password_blacklist/badges/gpa.svg)](https://codeclimate.com/github/gchan/password_blacklist)
|
5
5
|
|
6
|
-
Check the presence of a string in a blacklist of the top
|
6
|
+
Check the presence of a string in a blacklist of the top 95,000 commonly used passwords (sourced from berzerk0
|
7
|
+
's [Probable-Wordlists](https://github.com/berzerk0/Probable-Wordlists)).
|
7
8
|
|
8
9
|
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.
|
9
10
|
|
@@ -79,8 +80,10 @@ Bug reports and pull requests are welcome on GitHub at https://www.github.com/gc
|
|
79
80
|
4. Push to the branch (`git push origin my-new-feature`)
|
80
81
|
5. Create a new Pull Request
|
81
82
|
|
82
|
-
##
|
83
|
+
## Licenses
|
83
84
|
|
84
85
|
password_blacklist is Copyright (c) 2017 Gordon Chan and is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
85
86
|
|
87
|
+
Top95Thousand-probable.txt is licensed under CC BY-SA 4.0 (Creative Commons Attribution-ShareAlike 4.0 International)
|
88
|
+
|
86
89
|
[![Analytics](https://ga-beacon.appspot.com/UA-70790190-2/password_blacklist/README.md?flat)](https://github.com/igrigorik/ga-beacon)
|