Implementing SMS One-Time-Password Authentication with IBM MobileFirst Foundation 8.0

Introduction

SMS One-Time-Password(OTP) is essential authentication method in every modern mobile application. SMS authentication and/or number verification gives your app good balance between security and user experience. More and more retails and banking apps use this method as their main authentication method.

In this blog I want to introduce a new sample which using the SMS OTP method for device/user authentication. The sample demonstrates registration of a phone number using the client registration-data API on the server, and then how to authenticate with an SMS OTP.

As the SMS vendor, the sample uses Twilio. Twilio provides a free trial for a limited period. The fact that the Security Check Adapter is a maven project make it easy to add the Twilio Java SDK as dependency in the pom.xml file.

...
<dependency>
	<groupId>com.twilio.sdk</groupId>
	<artifactId>twilio-java-sdk</artifactId>
	<version>6.3.0</version>
</dependency>
...

This blog post assumes that you have basic knowledge about IBM MobileFirst Foundation 8.0 authentication and security checks. If it’s not the case, refer to the Authentication and Security tutorial.
If you are an on-premise 8.0 customer or Mobile Foundation service customer, then read further to learn how to work with the sample.

Running the sample

To run this sample, review the instructions in the sample’s repository.

The big picture

login flow

The diagram above illustrates the login flow (here described with Google but also relevant to Facebook or other social providers). The diagram shows that the trigger to call social providers is initiated by the client.

  1. On application load it sends request /phone/isRegistered to the security check adapter, and toggle buttons in response
  2. In case the user is not registered he presses the Register button.
  3. Request /phone/register/{request} is sent to the security check adapter, and as result the phone is registered on the server registration data. From that time the security context can access to that number.
  4. The user presses on the Login button which invoke the obtainAccessTokenForScope API and start the OAuth flow with the MobileFirst Foundation server.
  5. The sms-otp Security Check on the server gets the registered phone number and send SMS with random code. The code is saved for later validation.
  6. The Authorization API calls the mapped security check social-login to validate the credentials.
  7. The challenge response is sent back to server with the code, and if all correct the token flow is continue until client gets new OAuth token. The client now can use that token to call to any protected resource which has scope that map to sms-otp Security Check.

Registering the phone number

SMSOTPResource.java
public String registerPhoneNumber(@PathParam("phoneNumber") String phoneNumber) {
    ...

    //Store the phone number in registration service
    clientData.getProtectedAttributes().put(SMSOTPSecurityCheck.PHONE_NUMBER, phoneNumber);
    securityContext.storeClientRegistrationData(clientData);

    ...
}

Sending the SMS code as a challenge

SMSOTPSecurityCheck.java
@Override
protected Map<String, Object> createChallenge() {
   final PersistentAttributes registeredProtectedAttributes = registrationContext.getRegisteredProtectedAttributes();

   Map<String, Object> challenge = new HashMap<>();

   int sentSmsCode = sendSMSCode(phoneNumber);
   if (sentSmsCode != SMS_SEND_FAILURE) {
       smsCode = String.valueOf(sentSmsCode);
       challenge.put(CHALLENGE, SMS_CODE);
   }
   return challenge;
}

Validating the SMS code

SMSOTPSecurityCheck.java
@Override
protected boolean validateCredentials(Map<String, Object> credentials) {
    String receivedSmsCode = (String) credentials.get(CODE_KEY);
    return receivedSmsCode != null && !receivedSmsCode.isEmpty() && receivedSmsCode.equals(smsCode);
}

Configuration

You can configure the sms-otp either by editing the properties in the adapter.xml file followed by re-building and re-deploying the .adapter file, or by editing the adapter properties directly from MobileFirst Console. In the SMSOTPSecurityCheckConfig.java you can do the online validation for the Twilio account, and fail the deployment or warn the admin if the account data is incorrect SMS OTP configuration

Inclusive terminology note: The Mobile First Platform team is making changes to support the IBM® initiative to replace racially biased and other discriminatory language in our code and content with more inclusive language. While IBM values the use of inclusive language, terms that are outside of IBM's direct influence are sometimes required for the sake of maintaining user understanding. As other industry leaders join IBM in embracing the use of inclusive language, IBM will continue to update the documentation to reflect those changes.
Last modified on May 07, 2018