From 651ad8bc96d360500e7f5953d05ef418b51acc86 Mon Sep 17 00:00:00 2001 From: Brendan Abolivier Date: Mon, 18 Mar 2019 12:57:20 +0000 Subject: Add ratelimiting on failed login attempts (#4865) --- tests/utils.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tests/utils.py') diff --git a/tests/utils.py b/tests/utils.py index a412736492..b58b674aa4 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -157,6 +157,8 @@ def default_config(name): config.rc_login_address.burst_count = 10000 config.rc_login_account.per_second = 10000 config.rc_login_account.burst_count = 10000 + config.rc_login_failed_attempts.per_second = 10000 + config.rc_login_failed_attempts.burst_count = 10000 config.saml2_enabled = False config.public_baseurl = None config.default_identity_server = None -- cgit 1.4.1