Laravel登录失败次数限制的实现方法


Posted in PHP onAugust 26, 2020

在用户身份验证的情况下,Laravel 具有内置的身份验证系统。我们可以根据要求轻松修改它。身份验证中包含的功能之一是Throttling.

为什么我们需要throttling保护?

基本上,throttling是用来保护暴力攻击的。它将在一定时间内检查登录尝试。在短登录中,throttling会计算用户或机器人尝试失败的登录尝试次数。

使用自定义登录实现限制

默认情况下,在内置身份验证控制器中实现限制。但是,如果我们需要实现它到自定义登录呢?

实现自定义登录限制非常容易。首先,我们必须将ThrottlesLogins trait包含到您的控制器中。

use Illuminate\Foundation\Auth\ThrottlesLogins;

现在,将此ThrottlesLogins trait 加到控制器中。

namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Illuminate\Foundation\Auth\ThrottlesLogins;
class AuthController extends Controller
{
 use ThrottlesLogins;
 ......

现在转到用于对用户进行身份验证的方法。在我的例子中,我使用了 login() POST 方法。并粘贴以下代码:

public function login(Request $request)
{
 // Authenticate Inputs
 $request->validate([
 'username' => 'required', 
 'password' => 'required|min:6|max:18'
 ]);
 // If the class is using the ThrottlesLogins trait, we can automatically throttle
 // the login attempts for this application. We'll key this by the username and
 // the IP address of the client making these requests into this application.
 if (method_exists($this, 'hasTooManyLoginAttempts') &&
 $this->hasTooManyLoginAttempts($request)) {
 $this->fireLockoutEvent($request);
 return $this->sendLockoutResponse($request);
 }
 
 .......

首先,我们验证了用户提交的输入,然后实现了hasTooManyLoginAttempts() 方法。此方法将检查用户在某个时间是否执行过一定数量的失败尝试,然后系统将通过sendLockoutResponse()  方法阻止该用户。

现在,我们必须通过incrementLoginAttempts()方法指示对ThrottlesLogins trait的失败登录尝试。

if( Auth::attempt(['username' => $username, 'password' => $password]) ){
 // Redirect to appropriate dashboard 
}
else {
 // If the login attempt was unsuccessful we will increment the number of attempts
 // to login and redirect the user back to the login form. Of course, when this
 // user surpasses their maximum number of attempts they will get locked out.
 $this->incrementLoginAttempts($request);
 return redirect()->back()
  ->withInput($request->all())
  ->withErrors(['error' => 'Please check your username / password.']);
}

您还可以通过$maxAttempts和$decayMinutes属性更改允许的最大尝试次数和限制的分钟数。在这里,您可以找到完整的代码。

<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Illuminate\Foundation\Auth\ThrottlesLogins;
class AuthController extends Controller
{
 use ThrottlesLogins;
 /**
  * The maximum number of attempts to allow.
  *
  * @return int
  */
 protected $maxAttempts = 5;
 /**
  * The number of minutes to throttle for.
  *
  * @return int
  */
 protected $decayMinutes = 1;
 public function login(Request $request)
 {
  // Authenticate Inputs
  $request->validate([
   'username' => 'required', 
   'password' => 'required|min:6|max:18'
  ]);
  // If the class is using the ThrottlesLogins trait, we can automatically throttle
  // the login attempts for this application. We'll key this by the username and
  // the IP address of the client making these requests into this application.
  if (method_exists($this, 'hasTooManyLoginAttempts') &&
   $this->hasTooManyLoginAttempts($request)) {
   $this->fireLockoutEvent($request);
   return $this->sendLockoutResponse($request);
  }
  $username = $request->username;
  $password = $request->password;
  
  if( Auth::attempt(['username' => $username, 'password' => $password]) ){
   // Redirect to appropriate dashboard 
  }
  else {
   // If the login attempt was unsuccessful we will increment the number of attempts
   // to login and redirect the user back to the login form. Of course, when this
   // user surpasses their maximum number of attempts they will get locked out.
   $this->incrementLoginAttempts($request);
   return redirect()->back()
    ->withInput($request->all())
    ->withErrors(['error' => 'Please check your username / password.']);
  }
 }
}
Related Posts:

总结

到此这篇关于Laravel登录失败次数限制的文章就介绍到这了,更多相关Laravel登录失败次数限制内容请搜索三水点靠木以前的文章或继续浏览下面的相关文章希望大家以后多多支持三水点靠木!

PHP 相关文章推荐
两种php调用Java对象的方法
Oct 09 PHP
php 表单数据的获取代码
Mar 10 PHP
php后台程序与Javascript的两种交互方式
Oct 25 PHP
《PHP编程最快明白》第八讲:php启发和小结
Nov 01 PHP
PHP中break及continue两个流程控制指令区别分析
Apr 18 PHP
php类常量的使用详解
Jun 08 PHP
php使用smtp发送支持附件的邮件示例
Apr 13 PHP
php foreach正序倒序输出示例代码
Jul 01 PHP
set_exception_handler函数在ThinkPHP中的用法
Oct 31 PHP
PDO预处理语句PDOStatement对象使用总结
Nov 20 PHP
ThinkPHP自定义函数解决模板标签加减运算的方法
Jul 03 PHP
PHP之多条件混合筛选功能的实现方法
Oct 09 PHP
利用PHP计算有多少小于当前数字的数字方法示例
Aug 26 #PHP
one.php 多项目、函数库、类库 统一为一个版本的方法
Aug 24 #PHP
PHP执行普通shell命令流程解析
Aug 24 #PHP
PHP连接SQL server数据库测试脚本运行实例
Aug 24 #PHP
解决PHP Opcache 缓存刷新、代码重载出现无法更新代码的问题
Aug 24 #PHP
WordPress免插件实现面包屑导航的示例代码
Aug 20 #PHP
VSCode+PHPstudy配置PHP开发环境的步骤详解
Aug 20 #PHP
You might like
打造计数器DIY三步曲(中)
2006/10/09 PHP
如何获知PHP程序占用多少内存(memory_get_usage)
2012/09/23 PHP
js 鼠标点击事件及其它捕获
2009/06/04 Javascript
麻雀虽小五脏俱全 Dojo自定义控件应用
2010/09/04 Javascript
读jQuery之十一 添加事件核心方法
2011/07/31 Javascript
DOM 中的事件处理介绍
2012/01/18 Javascript
jQuery中的height innerHeight outerHeight区别示例介绍
2014/06/15 Javascript
JavaScript中的object转换成number或string规则介绍
2014/12/31 Javascript
JavaScript中document.forms[0]与getElementByName区别
2015/01/21 Javascript
Jquery基础教程之DOM操作
2015/08/19 Javascript
JavaScript判断变量是否为数组的方法(Array)
2016/02/24 Javascript
JS定时器用法分析【时钟与菜单中的应用】
2016/12/21 Javascript
JavaScript队列函数和异步执行详解
2017/06/19 Javascript
Windows安装Node.js报错:2503、2502的解决方法
2017/10/25 Javascript
JS实现table表格内针对某列内容进行即时搜索筛选功能
2018/05/11 Javascript
老生常谈JS中的继承及实现代码
2018/07/06 Javascript
微信小程序实现打卡日历功能
2020/09/21 Javascript
Vue 实现html中根据类型显示内容
2019/10/28 Javascript
Vue.js仿Select下拉框效果
2020/02/18 Javascript
[07:38]2014DOTA2国际邀请赛 Newbee顺利挺进胜者组赛后专访
2014/07/15 DOTA
利用python程序帮大家清理windows垃圾
2017/01/15 Python
酷! 程序员用Python带你玩转冲顶大会
2018/01/17 Python
利用Python对文件夹下图片数据进行批量改名的代码实例
2019/02/21 Python
用pyqt5 给按钮设置图标和css样式的方法
2019/06/24 Python
解决os.path.isdir() 判断文件夹却返回false的问题
2019/11/29 Python
收集的22款给力的HTML5和CSS3帮助工具
2012/09/14 HTML / CSS
CSS3制作炫酷带方向感应的鼠标滑过图片3D动画
2016/03/16 HTML / CSS
口头翻译求职人自荐信
2013/12/07 职场文书
最新党员思想汇报
2014/01/01 职场文书
教育科研先进个人材料
2014/01/26 职场文书
机关单位动员会主持词
2014/03/20 职场文书
租房协议书样本
2014/08/20 职场文书
机关干部三严三实心得体会
2014/10/13 职场文书
2014年音乐教师工作总结
2014/12/03 职场文书
咖啡厅里的创业计划书
2019/08/21 职场文书
解决Mysql中的innoDB幻读问题
2022/04/29 MySQL