A Ruby gem wrapper around https://github.com/tarraschk/richelieu
This will return an Array
of the top 20000 most common
passwords (sorted by usage):
CommonFrenchPasswords.list
Note: this method reads from a file every time you call it, so feel free to load the dataset in memory if you need sub-millisecond performances:
COMMON_PASSWORD_LIST = CommonFrenchPasswords.list
# or
COMMON_PASSWORD_SET = Set.new(CommonFrenchPasswords.list)
This gem is released under the MIT License.
The list of password has been copied from https://github.com/tarraschk/richelieu and retains the original Creative Commons License.