Guidance on how to achieve the equivalent of the Umbraco 8 "IUmbracoBackOfficeTwoFactorOptions" and plug in a custom "TwoFactorView" into the backoffice login workflow would be appreciated.
var identityBuilder = new BackOfficeIdentityBuilder(builder.Services);
identityBuilder.AddTwoFactorProvider<MyTwoFactorAuthenticator>(MyTwoFactorAuthenticator.Name);
But that only gets you so far, I would like an idea on how to update the UI view.
In my case, I am not using a 3rd party authenticator (google, MS etc) but want to roll my own authentiation method by creating a one-time-password and emailing it to their inbox for subsequent entry into a dialog box once the initial username/password verification passes. All possible and working in Umnbraco 8 with quite a bit of code, so now looking at how to extend umbraco 9 in the same way.
2FA (Two Factor Authentication) for Umbraco Backend User - V9
Hi All,
I saw that there's documentation for 2FA for Umbraco Members in V9.3. https://our.umbraco.com/documentation/Reference/Security/two-factor-authentication/
But I can't find anything for Umbraco User 2FA.
Has anyone implemented 2FA (Eg Google Authenticator) for Umbraco User to login to the Umbraco V9 backend or can point me to the right direction.
Thank you
I'm interested in this too. Would love some guidance on how to do that!
interested too.
Guidance on how to achieve the equivalent of the Umbraco 8 "IUmbracoBackOfficeTwoFactorOptions" and plug in a custom "TwoFactorView" into the backoffice login workflow would be appreciated.
I followed https://our.umbraco.com/documentation/Reference/Security/two-factor-authentication and substituted the MemberIdentityBuilder composition with:
But that only gets you so far, I would like an idea on how to update the UI view.
In my case, I am not using a 3rd party authenticator (google, MS etc) but want to roll my own authentiation method by creating a one-time-password and emailing it to their inbox for subsequent entry into a dialog box once the initial username/password verification passes. All possible and working in Umnbraco 8 with quite a bit of code, so now looking at how to extend umbraco 9 in the same way.
thanks
Seems like it's coming out in umbraco V9.5.0 soon https://our.umbraco.com/documentation/reference/security/two-factor-authentication/
is working on a reply...