05/19 Enhance codes 5
This commit is contained in:
@@ -282,6 +282,9 @@ def mfa_enable():
|
||||
if not pyotp.TOTP(secret).verify(totp_code, valid_window=1):
|
||||
return jsonify({'error': 'Invalid verification code'}), 400
|
||||
|
||||
# Encrypt the secret before replay check so totp_secret_enc/totp_iv are defined.
|
||||
totp_secret_enc, totp_iv = encrypt_totp_secret(secret)
|
||||
|
||||
# Prevent replay: reject a code that was already consumed within the valid window.
|
||||
# user.id is not yet persisted (MFA not enabled), so use g.current_user_id directly.
|
||||
if is_totp_code_used(g.current_user_id, totp_code):
|
||||
|
||||
Reference in New Issue
Block a user