Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
devise-uncommon_password-alt
Advanced tools
This project is not frequently maintained. Please check the original source: https://github.com/HCLarsen/devise-uncommon_password.
Devise::UncommonPassword is an extension for the devise gem, which prevents users from signing up using one of the 100 most common passwords. The list is derived from 10-million-password-list-top-1000000.txt found at: https://github.com/danielmiessler/SecLists/blob/master/Passwords/Common-Credentials/10-million-password-list-top-1000000.txt.
Add the :uncommon_password
module to your model:
class AdminUser < ApplicationRecord
devise :database_authenticatable,
:recoverable, :rememberable, :trackable, :validatable, :uncommon_password
end
If it doesn't load, include this in the file you need or in application.rb
require 'devise/uncommon_password'
By default, the password is checked against the 100 most common passwords that fit within the minimum and maximum lengths specified in the /config/initializers/devise.rb file. However, if a developer wants to check against a larger list, they may override this default by adding the following line to that same file:
# Number of common passwords to check entered password against.
config.password_matches = 1000
Added support to allow different password files to be loaded depending on environment
The default message for users who attempt to use a common password is:
is a very common password. Please choose something harder to guess.
This can be changed by modifying the devise.en.yml
file, under errors/messages/common_password. Translations can be provided using the devise translation files in the same location.
en:
errors:
messages:
common_password: 'is a very common password. Please choose something harder to guess.'
Add this line to your application's Gemfile:
gem 'devise-uncommon_password-alt'
And then execute:
$ bundle install
You can contribute by doing the following:
The gem is available as open source under the terms of the MIT License.
FAQs
Unknown package
We found that devise-uncommon_password-alt demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.