From 49038a0c17e427d36b593157fa4abfe4627b2df0 Mon Sep 17 00:00:00 2001 From: HDVinnie Date: Mon, 18 Oct 2021 21:16:54 -0400 Subject: [PATCH] update: auth.php config - add rate limiting to avoid abuse --- config/auth.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/auth.php b/config/auth.php index fce3eda0eb7d..f150aa1d3210 100644 --- a/config/auth.php +++ b/config/auth.php @@ -104,11 +104,13 @@ return [ 'provider' => 'users', 'table' => 'password_resets', 'expire' => 60, + 'throttle' => 60, ], 'clients' => [ 'provider' => 'clients', 'table' => 'password_resets', 'expire' => 60, + 'throttle' => 60, ], ],