app-MAIL-temp/app/auth/views/fido.py

126 lines
4.0 KiB
Python
Raw Normal View History

2020-05-05 14:03:29 +02:00
import json
import secrets
2020-05-07 17:49:29 +02:00
import webauthn
2020-05-05 14:03:29 +02:00
from flask import request, render_template, redirect, url_for, flash, session
from flask_login import login_user
from flask_wtf import FlaskForm
from wtforms import HiddenField, validators
from app.auth.base import auth_bp
from app.config import MFA_USER_ID
2020-05-07 17:49:29 +02:00
from app.config import RP_ID, URL
from app.extensions import db
2020-05-05 14:03:29 +02:00
from app.log import LOG
2020-05-18 22:54:05 +02:00
from app.models import User, Fido
2020-05-05 14:03:29 +02:00
class FidoTokenForm(FlaskForm):
sk_assertion = HiddenField("sk_assertion", validators=[validators.DataRequired()])
@auth_bp.route("/fido", methods=["GET", "POST"])
def fido():
# passed from login page
user_id = session.get(MFA_USER_ID)
# user access this page directly without passing by login page
if not user_id:
flash("Unknown error, redirect back to main page", "warning")
return redirect(url_for("auth.login"))
user = User.get(user_id)
2020-05-07 17:56:25 +02:00
if not (user and user.fido_enabled()):
2020-05-05 14:03:29 +02:00
flash("Only user with security key linked should go to this page", "warning")
return redirect(url_for("auth.login"))
2020-05-12 04:17:51 +02:00
auto_activate = True
2020-05-05 14:03:29 +02:00
fido_token_form = FidoTokenForm()
next_url = request.args.get("next")
# Handling POST requests
if fido_token_form.validate_on_submit():
try:
sk_assertion = json.loads(fido_token_form.sk_assertion.data)
except Exception as e:
2020-05-07 11:53:28 +02:00
flash("Key verification failed. Error: Invalid Payload", "warning")
2020-05-05 23:13:01 +02:00
return redirect(url_for("auth.login"))
2020-05-07 11:53:28 +02:00
challenge = session["fido_challenge"]
2020-05-05 14:03:29 +02:00
try:
2020-05-18 22:54:05 +02:00
fido_key = Fido.get_by(
2020-05-18 10:02:58 +02:00
uuid=user.fido_uuid, credential_id=sk_assertion["id"]
)
webauthn_user = webauthn.WebAuthnUser(
user.fido_uuid,
user.email,
user.name if user.name else user.email,
False,
fido_key.credential_id,
fido_key.public_key,
fido_key.sign_count,
RP_ID,
)
webauthn_assertion_response = webauthn.WebAuthnAssertionResponse(
webauthn_user, sk_assertion, challenge, URL, uv_required=False
)
2020-05-05 23:26:26 +02:00
new_sign_count = webauthn_assertion_response.verify()
2020-05-05 14:03:29 +02:00
except Exception as e:
2020-05-07 11:53:28 +02:00
LOG.error(f"An error occurred in WebAuthn verification process: {e}")
flash("Key verification failed.", "warning")
2020-05-12 04:17:51 +02:00
auto_activate = False
else:
2020-05-05 14:03:29 +02:00
user.fido_sign_count = new_sign_count
db.session.commit()
del session[MFA_USER_ID]
login_user(user)
flash(f"Welcome back {user.name}!", "success")
# User comes to login page from another page
if next_url:
LOG.debug("redirect user to %s", next_url)
return redirect(next_url)
else:
LOG.debug("redirect user to dashboard")
return redirect(url_for("dashboard.index"))
2020-05-07 17:48:44 +02:00
2020-05-07 11:31:42 +02:00
# Prepare information for key registration process
2020-05-07 11:53:28 +02:00
session.pop("challenge", None)
2020-05-05 14:03:29 +02:00
challenge = secrets.token_urlsafe(32)
2020-05-07 11:53:28 +02:00
session["fido_challenge"] = challenge.rstrip("=")
2020-05-05 14:03:29 +02:00
2020-05-18 22:55:38 +02:00
fidos = Fido.filter_by(uuid=user.fido_uuid).all()
2020-05-18 10:02:58 +02:00
webauthn_users = []
2020-05-18 22:55:38 +02:00
for fido in fidos:
2020-05-18 10:02:58 +02:00
webauthn_users.append(
webauthn.WebAuthnUser(
user.fido_uuid,
user.email,
user.name if user.name else user.email,
False,
2020-05-18 22:55:38 +02:00
fido.credential_id,
fido.public_key,
fido.sign_count,
2020-05-18 10:02:58 +02:00
RP_ID,
)
)
2020-05-18 10:04:45 +02:00
2020-05-05 14:03:29 +02:00
webauthn_assertion_options = webauthn.WebAuthnAssertionOptions(
2020-05-18 09:08:06 +02:00
webauthn_users, challenge
2020-05-07 11:53:28 +02:00
)
2020-05-05 14:03:29 +02:00
webauthn_assertion_options = webauthn_assertion_options.assertion_dict
2020-05-07 11:53:28 +02:00
return render_template(
"auth/fido.html",
fido_token_form=fido_token_form,
webauthn_assertion_options=webauthn_assertion_options,
enable_otp=user.enable_otp,
2020-05-12 04:17:51 +02:00
auto_activate=auto_activate,
2020-05-17 10:35:11 +02:00
next_url=next_url,
2020-05-07 11:53:28 +02:00
)