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

Step 1.

Use $auth = new Authenticatron() to initialize an instance and $auth->new to create a new secret for a member, and fetch a secure image for scanning.

Code

$auth = new Authenticatron()
$auth->new($accountName)

Input

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

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) "2CUPQVYMMAY2ISRL"
  ["URL"]=>
  string(113) "otpauth://totp/Authenticatron Example Page: John Smith?secret=2CUPQVYMMAY2ISRL&issuer=Authenticatron+Example+Page"
  ["QR"]=>
  string(810) "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALQAAAC0AQMAAAAHA5RxAAAABlBMVEUAAAD///+l2Z/dAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAB70lEQVRYha2X263jQAxD1YH675Id8IrkOAvsN4MgsI8NKJKox8zMLIAZLu47y533qfDlXYAH7gYk7ilZ5LO79M09Pdt3qXea/AzuBNyTrfNzSp6djyZdTiWE9sy+8V88G1wp/u/z00ODnx1ZV7x42rKyznyNW1eSE2wMfml6/Ew53xwkJetCqfFN4KB6kMDiYI9/VSfXVNyKmfNS47J9luKTXrOIW/wzxXftUMZwhVNRG6UbCh/1a73VuDIyyrqe3U3U2+Ju1Omr15ygvFtXLc5kR9ZVGxLwC2eHb2r7osfX8VKDLR7TrgjFjRkMqHH3UERiu8+iW0iJw4nRfKBEpj4iFbS45aqobWRr4RY5bMdOOTF4dlt8+MLk35S33yxxTRxs2qsUfIPTjaPG9cBzWSHTVNbUQZNrINAZclXTcWvxCFWWGZGN18cad1HA68r7B8wMbXHdbwacFfXrsh2ujdGKhYdy9rC3STZ41umNQ7Inp4AaVxdVSTtk4Zt+UuIKE7O56EfSHfa4Ro2Hs8Wlue/NosbXiYFbiJs3ctHi3ntV1N7b0/+8D5T4ePJ7g/QfIF8/L3HplN86KhXvO920+HNkc8b57QJVnoMxsrvATa/J8Z236c3LbaTG1ScUNsxnnpPTU4XPO824vhGVDWr8DyrgOlYFYqHuAAAAAElFTkSuQmCC"
}

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.

Second Factor Authentication Code

Step 2.

Use $auth->checkCode to confirm the setup and check time-unique codes at every login.

Code

$auth->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 ( $auth->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.


lifefloat

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.

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

Open Source Initiative Keyhole

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