From e6f735b8cae51f5b95fe64df343f6260a6de3bde Mon Sep 17 00:00:00 2001 From: justcool393 Date: Wed, 26 Oct 2022 14:18:21 -0500 Subject: [PATCH] security: be slightly more generous with login ratelimits --- files/routes/login.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/routes/login.py b/files/routes/login.py index 0954564fd..f01a1fea0 100644 --- a/files/routes/login.py +++ b/files/routes/login.py @@ -74,7 +74,7 @@ def check_for_alts(current:User): @app.post("/login") -@limiter.limit("1/10 seconds;6/minute;100/hour;500/day") +@limiter.limit("1/5 seconds;6/minute;100/hour;500/day") def login_post(): template = ''