Salted Passwordless Authentication
msurdi.github.io
Salted Passwordless Authentication
1–3 of 3 posts
Re: Salted Passwordless Authentication
#2Because a 5 digit code holds much less entropy than traditional passwordless tokens, it would be easier to brute force if the validation endpoint is not properly implemented (rate-limiting and deleting the challenge after N failed responses).
Re: Salted Passwordless Authentication
#3Interesting approach, would the code sent to the user be a TOTP ? Because a 5 digit code holds much less entropy than traditional passwordless tokens, it would be easier to brute force if the validation endpoint is not properly implemented (rate-limiting and deleting the challenge after N failed responses).
It also expires (see https://github.com/msurdi/wipku/blob/master/server/core/user...) , and the api should probably protected with rate limits, that should mitigate the brute force attacks I think.