How to Implement Google Two Factor Authentication Login in Scriptcase

Hello,

Anyone has installed Google two factor authentication login?

Thanks

Do you mean adding TOTP as a secondary factor so that Google Authenticator (or any TOTP app) can be used?
If so, I’ve done it by querying a RADIUS backend via PHP as the secondary authentication method (primary is LDAP to AD).
The RADIUS server is configured to use TOTP instead of passwords to authenticate users, so nothing to write/tweak in SC.

Yes, exactly.
I wan’t to add more security to my aplcation.

The components I used are:

  • RADIUS to manage the TOTP authentication: FreeRADIUS package running in a PFSense VM (I used the PFSense package as I already had PFSense as a firewall and the GUI is very easty to configure) - the RADIUS config to use TOTP is completely transparent to SC
  • PHP Library for RADIUS to easily write the RADIUS authentication code in SC: https://github.com/dapphp/radius

Thank you Robydago but I think it’s so difficult to implement for me.