Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/nickpack/keycloak-sms-authenticator-sns

SMS 2 Factor Authentication for Keycloak via AWS SNS
https://github.com/nickpack/keycloak-sms-authenticator-sns

authentication aws keycloak sns two-factor-authentication

Last synced: about 1 month ago
JSON representation

SMS 2 Factor Authentication for Keycloak via AWS SNS

Lists

README

        

# keycloak-sms-authenticator-sns

To install the SMS Authenticator one has to:

* Add the jar to the Keycloak server:
* `$ cp target/keycloak-sms-authenticator-sns-*.jar _KEYCLOAK_HOME_/providers/`

* Add three templates to the Keycloak server:
* `$ cp templates/sms-validation.ftl _KEYCLOAK_HOME_/themes/base/login/`
* `$ cp templates/sms-validation-error.ftl _KEYCLOAK_HOME_/themes/base/login/`
* `$ cp templates/sms-validation-mobile-number.ftl _KEYCLOAK_HOME_/themes/base/login/`

Configure your REALM to use the SMS Authentication.
First create a new REALM (or select a previously created REALM).

Under Authentication > Flows:
* Copy 'Browse' flow to 'Browser with SMS' flow
* Click on 'Actions > Add execution on the 'Browser with SMS Forms' line and add the 'SMS Authentication'
* Set 'SMS Authentication' to 'REQUIRED' or 'ALTERNATIVE'
* To configure the SMS Authenticator, click on Actions Config and fill in the attributes.

Under Authentication > Bindings:
* Select 'Browser with SMS' as the 'Browser Flow' for the REALM.

Under Authentication > Required Actions:
* Click on Register and select 'SMS Authentication' to add the Required Action to the REALM.
* Make sure that for the 'SMS Authentication' both the 'Enabled' and 'Default Action' check boxes are checked.
* Click on Register and select 'Mobile Number' to add the Required Action to the REALM.
* Make sure that for the 'Mobile Number' both the 'Enabled' and 'Default Action' check boxes are checked.

Malys contributions (for [Lyra Network](https://www.lyra-network.com/))
* Internationalization support
* Vault, Java properties, environment variables parameters support
* Lyrasms gateway support
* Add mobilephone number verification
* Add input mobile phone number on authenticator
* Refactoring
* Template cleaning
* Documentation