webauthn_components icon indicating copy to clipboard operation
webauthn_components copied to clipboard

[BUG] - Value of form input for email is over-trusted

Open peaceful-james opened this issue 1 year ago • 3 comments

Description

The handle_info of :registration_successful trusts the assigned form value of the email. The email could be changed during the WebAuthn flow.

Steps To Reproduce

Steps to reproduce the behavior:

  1. Visit http://localhost:4000/sign-in
  2. Enter [email protected] into the email input.
  3. In console, run this JS:
function changeEmail() {
  var emailInput = document.getElementById("email")
  emailInput.value = "[email protected]";
  emailInput.dispatchEvent(new Event("input", {bubbles: true}))
}

setTimeout(changeEmail, 10000);
  1. Click "Sign Up".
  2. Wait at most 10 seconds for the email input to change (because of JS from step 3).
  3. Complete the sign up flow successfully.

Expected behavior

The difference in the form email and the email of the created passkey should cause user creation to fail.

Suggestion

Pass the email back as part of the :registration_successful payload and check that the form email matches exactly.

I do not think this is a realistic attack vector for any serious system. Email confirmation should be done after creating the passkey.

peaceful-james avatar Jun 25 '24 17:06 peaceful-james

Thank you for the bug report, @peaceful-james. I will look into this.

type1fool avatar Jun 25 '24 23:06 type1fool

I see what's happening here. The email field from the form is being read when :registration_successful is received, where it should be taking the value from the @webauthn_user assign or possibly a separate assign.

It may also be preferable to remove the email form field when the registration starts so it can't be modified. That may lead to a bit of rethinking the design of the authentication_live.ex template used by the code generator. 🤔

Good catch! I will consider breaking up the form into a multistep process, which will probably affect the way the component works as well.

type1fool avatar Jun 26 '24 02:06 type1fool

Relates to #76

type1fool avatar Jul 11 '24 01:07 type1fool