Padlock Icon

Authenticatron

A simple PHP script to create TOTP secrets and corresponding QR codes,
then verify the entered response over a given time variance.
homepagedocumentationglossaryserversource

Installation

Install

composer require eustasy/authenticatron

Require

////    Import eustasy\Authenticatron with Composer
require_once __DIR__ . '/vendor/autoload.php';
use eustasy\Authenticatron;

Quick Implementation

Step 1.

Authenticatron::new to create a new secret for a member, and fetch a secure image for scanning.

Code

Authenticatron::new($accountName, $issuer)

Input

$accountName is a string containing your members username or nice-name, perferably something unique and quickly identifiable.

$issuer is a string containing the name of your app or site.

Output

Outputs an array, where Secret is the Secret for the member, URL is an OTPAuth URL, and QR is the Data64 URI for the QR code.

array(3) {
  ["Secret"]=>
  string(16) "CA65RCXDBGV7XUWF"
  ["URL"]=>
  string(113) "otpauth://totp/Authenticatron Example Page: John Smith?secret=CA65RCXDBGV7XUWF&issuer=Authenticatron+Example+Page"
  ["QR"]=>
  string(706) "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALQAAAC0AQMAAAAHA5RxAAAABlBMVEX///8AAABVwtN+AAAACXBIWXMAAA7EAAAOxAGVKw4bAAABoUlEQVRYhdWXy3HDQAxD2QH67xIdMAQgeZI7cvAeJOutZih+QK5nvn3tLmdILoh7YkCNC+4Q1A8colmPrwkHh/QQUOVn+FyCLv/CZw84gsC0uZw6m7K7t/87ng0ua3/Wr3pocC/IPxmfD2pxV6qSrog5PUCVKxVHFicMv8XErcShuOl6trVFTJePKKw4ScPfUeTO+90EtYsdNnmcOW9OE3R2WOXudUmI/MHErRo/pV1GmOvRlfqKXIp2ZnRf1RZY5bfo0mXUx7hV46pX0q7Jo93orsVl2VMHgrpjmvzY6jpqGsjYZJEjrVoteyPqV48dPm5HVsQqdnzKrcfV86y/TJ3oo8dtznuKGayPIveZJflQ9XqIVnkcUt+2KvbJS4u7pIBXE9I4qjx9zyV1fXv3o+wO95lF08b+TTpIk+cuTaz79nO26HEF6+3b+go8dktcqdaeNL6ZQk3+StsClJfPU4uvazXFindGF7mPue6twyRlP+fhCnecsgvr2++U+by15THEMncm3pFgoRS5ku2/Mz6QyrMqd5/wsV0MOUAW+XevH6P7MarD47xBAAAAAElFTkSuQmCC"
}

Handling

You'll want to store ['Secret'] with the member, but make sure you get them to confirm a code before enforcing it, or it might not have worked and they would be locked out of their account. Make sure that this is as protected as a password hash.


['QR'] is the Data64 URI for the QR code. You can simply echo it into an img element like this:

<img src="<?php echo $secondAuth['QR']; ?>" alt="Second Factor Authentication Code">

Example

Google Camera Icon

Try scanning this into an app like Google Authenticator. You should see a code and a countdown clock until it changes.

QR Code for 2nd factor authentication

Step 2.

Use Authenticatron::checkCode to confirm the setup and check time-unique codes at every login.

Code

Authenticatron::checkCode($code, $secret)

Input

$code is the user input, the code that is generated on their device for authentication. Should be numeric-only in most cases, alpha-numeric if you change some settings.

$secret is the secret the member scanned that you securely stored for later.

$variance is an optional integer indicating the adjustment of codes with a 30 second value. Defaults to 2 either side, or 1 minute.

Output

Outputs a boolean value, true if the entered code is within allowed range, false if not.

bool(true)

Handling

You only need to check an input is alpha-numeric, and maybe 6 characters long before checking it against a retreieved secret.

$secret = ...;
if (
	strlen($_POST['secondfactor_code']) == 6 &&
	ctype_alnum($_POST['secondfactor_code'])
) {
	if ( Authenticatron::checkCode($_POST['secondfactor_code'], $secret) ) {
		// Authenticated, log in...
	} else {
		// Incorrect code
	}
} else {
	// Invalid entry
}

Example

Google Authenticator Icon

Enter the code that your device generates after scanning the image to from Step 1.


Google Help Lifeboat Ring Icon

Further Reading

Visit our documentation for a more thorough description of the options and functions available to you.

Take a look at the glossary if there are any terms you don't understand.

The server page can be used if this script is installed on your server to check for requirements.

This work is predominantly MIT licensed. See the LICENSE.md file for more information.

If you're ready to rock, check out the source!