From 7d1e097a3dfb8dbc3678b6e1c1ccd6abda042373 Mon Sep 17 00:00:00 2001 From: Graphictoria Date: Sat, 21 May 2022 23:17:39 -0400 Subject: [PATCH] Disable double session protector. --- web/app/Http/Kernel.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/app/Http/Kernel.php b/web/app/Http/Kernel.php index 8ede0c5..1839fd8 100644 --- a/web/app/Http/Kernel.php +++ b/web/app/Http/Kernel.php @@ -39,7 +39,8 @@ class Kernel extends HttpKernel \App\Http\Middleware\VerifyCsrfToken::class, \Illuminate\Routing\Middleware\SubstituteBindings::class, - \App\Http\Middleware\DoubleSessionProtector::class, // Prevents DDoS attacks. + // Yeah no, the double session protector was stupid. + //\App\Http\Middleware\DoubleSessionProtector::class, // Prevents DDoS attacks. \App\Http\Middleware\DailyReward::class ],