laravel-password

:closed_lock_with_key: :smiling_imp: Guard your users against entering dumb passwords in your Laravel 5 apps

  • 所有者: unicodeveloper/laravel-password
  • 平台:
  • 许可证: MIT License
  • 分类:
  • 主题:
  • 喜欢:
    0
      比较:

Github星跟踪图

laravel-password

Latest Stable Version
License
Quality Score
Total Downloads

Guard your users from security problems by preventing them from having dumb passwords

Introduction

This package can be used to verify the user provided password is
not one of the top 10,000 worst passwords
as analyzed by a respectable IT security analyst. Read
about all here,
here(wired) or
here(telegram)

Installation

PHP 5.5+ or HHVM 3.3+, and Composer are required.

To get the latest version of Laravel Password, simply add the following line to the require block of your composer.json file.

"unicodeveloper/laravel-password": "1.0.*"

You'll then need to run composer install or composer update to download it and have the autoloader updated.

  • If you're on Laravel 5.5 or above, that's all you need to do! Check out the usage examples below.
  • If you're on Laravel < 5.5, you'll need to register the service provider. Open up config/app.php and add the following to the providers array:
Unicodeveloper\DumbPassword\DumbPasswordServiceProvider::class

Usage

Use the rule dumbpwd in your validation like so:

/**
 * Get a validator for an incoming registration request.
 *
 * @param  array  $data
 * @return \Illuminate\Contracts\Validation\Validator
 */
protected function validator(array $data)
{
    return Validator::make($data, [
        'name' => 'required, max:255',
        'email' => 'required, email, max:255, unique:users',
        'password' => 'required, min:6, dumbpwd, confirmed',
    ]);
}

Error shows on the page like so:

By default, the error message returned is This password is just too common. Please try another!.

You can customize the error message by opening resources/lang/en/validation.php and adding to the array like so:

  'dumbpwd' => 'You are using a dumb password abeg',

Change log

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please feel free to fork this package and contribute by submitting a pull request to enhance the functionalities.

Inspiration

How can I thank you?

Why not star the github repo? I'd love the attention! Why not share the link for this repository on Twitter or HackerNews? Spread the word!

Don't forget to follow me on twitter!

Thanks!
Prosper Otemuyiwa.

License

The MIT License (MIT). Please see License File for more information.

主要指标

概览
名称与所有者unicodeveloper/laravel-password
主编程语言PHP
编程语言PHP (语言数: 1)
平台
许可证MIT License
所有者活动
创建于2016-07-02 10:29:28
推送于2020-12-30 04:56:53
最后一次提交2020-12-30 05:54:38
发布数5
最新版本名称1.0.4 (发布于 )
第一版名称1.0.0 (发布于 )
用户参与
星数427
关注者数14
派生数56
提交数41
已启用问题?
问题数6
打开的问题数0
拉请求数11
打开的拉请求数0
关闭的拉请求数5
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?