Skip to content
Snippets Groups Projects
Commit 34deaf88 authored by Jason Hu's avatar Jason Hu Committed by Paulus Schoutsen
Browse files

Add valid_window=1 to TOTP verify (#16625)

parent cc38981a
No related branches found
No related tags found
No related merge requests found
......@@ -149,10 +149,10 @@ class TotpAuthModule(MultiFactorAuthModule):
if ota_secret is None:
# even we cannot find user, we still do verify
# to make timing the same as if user was found.
pyotp.TOTP(DUMMY_SECRET).verify(code)
pyotp.TOTP(DUMMY_SECRET).verify(code, valid_window=1)
return False
return bool(pyotp.TOTP(ota_secret).verify(code))
return bool(pyotp.TOTP(ota_secret).verify(code, valid_window=1))
class TotpSetupFlow(SetupFlow):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment