Overview

Available for VoipNow 5.6.1.

This document outlines the email-based Multi-Factor Authentication (MFA) and device trust features added to the existing login system. The feature adds an additional layer of security to the login process, requiring users to verify their identity through a token sent to their registered email address, and allowing trusted devices to bypass MFA for a specified period of time.

How It Works

Configuration Parameters

To get started, simply configure the following settings in your MariaDB misc table:

INSERT INTO misc values (null, 'login_mfa_email', 1);
INSERT INTO misc values (null, 'login_mfa_email_valid', 120);
INSERT INTO misc values (null, 'login_mfa_trust_ttl', 1);

Login

Here's what happens when users log in with email-based MFA:

  1. Initial Login: They enter their credentials and submit the login form.
  2. Password Validation: We verify their password. If valid, we proceed to the next step.
  3. MFA Token Generation: We generate a unique token using our secure algorithm. The token is set to expire after the time specified in login_mfa_email_valid (in seconds).
  4. Email Notification: We send an email to their registered email address with a link to complete the MFA process.

Device Trust

When device trust is not enabled, MFA is always required when users login. When it's enabled, their devices will be remembered for a specified period and users won't need to enter MFA during this time. Here's how it works: