Passwordless login done right
programming.tudorconstantin.com
Passwordless login done right
1–10 of 56 posts
Re: Passwordless login done right
#2Re: Passwordless login done right
#3Re: Passwordless login done right
#4What happens when you lose the phone?
Re: Passwordless login done right
#5Cool idea, how is re-authentication handled beyond the initial sign up? Do you get a text message each time?
Re: Passwordless login done right
#6Every attempt I've seen at improving this fails by introducing some new unexpected workflow complexity such as "sign in with google, fb etc" or "use your phone"
I think devs should instead focus their efforts on making that standard Username/Password flow work as effortlessly as possible.
Re: Passwordless login done right
#7* How is this two-factor? I only see one factor (a thing you have, your phone). Email adresses are not secret.
* Again, email adresses are not secret. How do you limit login-spamming? I don't want to wake up in the middle of the night because someone is trying to break into my account.
* What about timing attacks? If i stand over your shoulder while you're in the library - and i try to log in using your email address a few seconds before/after you, wouldn't you think "oh, probably a fluke" and allow my login? How would you differentiate between logins?
* If you're not that security-minded, you could have a desktop client as well - so you don't have to rely on your phone. At that point you could probably just have a browser plugin that does it all for you. (And at this point you're pretty close to what i already do with LastPass, although the site i'm visiting doesn't have to do anything special other that implementing a regular username/password login system.)
EDIT: Also, as far as i can see from the Play Store screenshots, the app only asks you "Do you want to log in at ?". A far better solution would be to show the user a number sequence (or a cute cat or dog picture) on both the login page and the phone. If those two mismatch, the login attempt is not from your session.
Re: Passwordless login done right
#8As far as I know, factors are
1. Something you know (password)
2. Something you have (a dongle or phone)
3. Something you are (iris or fingerprint)
With only pressing a button on a phone, how can this be two-factor? There is no password ("passwords are obsolete" and usernames are not a knowledge factor in multi auth) and nothing of biometrics. Am I missing something?
By the way, not entering passwords is a fantastic way to login. I have been using the Passwordless [1] method for some time and it works great.
Re: Passwordless login done right
#9Re: Passwordless login done right
#10Users understand the Username/Password workflow. Every attempt I've seen at improving this fails by introducing some new unexpected workflow complexity such as "sign in with google, fb etc" or "use your phone" I think devs should instead focus their efforts on making that standard Username/Password flow work as effortlessly as possible.
Good UX involves taking away steps and streamlining flow, and until flow is streamlined and easier than the previous process users won't accept it.