wedgehr / laravel-common-password-validator
Protect your users from using the most common passwords
Installs: 12 167
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: ^8.0
- illuminate/container: ^8.0|^9.0
- illuminate/database: ^8.0|^9.0
- illuminate/support: ^8.0|^9.0
README
Laravel Common Password Validator
An optimized and secure validator to check if a given password is too common.
By default, we ensure password is at least 8 characters, and not one of the 10,000 most common.
Installation
Require the validator:
composer require wedgehr/laravel-common-password-validator
Publish the Migration:
php artisan vendor:publish --provider="Wedge\Validators\CommonPassword\ServiceProvider" --tag=migrations
Optionally publish the config file:
php artisan vendor:publish --provider="Wedge\Validators\CommonPassword\ServiceProvider" --tag=config
Seed the common passwords:
php artisan common-password:seed
Usage
This package installs a custom validator common_pwd
which can be used in any Validator.
Additionally, you can manually validate a password as such:
Wedge\Validators\CommonPassword\Facade::isCommonPassword('password');