Two Factor Authentication via TOTP for all your Users out-of-the-box.
This package silently enables authentication using 6 digits codes, without Internet or external providers.
- Laravel 6.15 or later.
- PHP 7.2+
Fire up Composer and require this package in your project.
composer require darkghosthunter/laraguard
That's it.
This packages adds a Contract to detect in a per-user basis if it should use Two Factor Authentication. It includes a custom view and a listener to handle the Two Factor authentication itself during login attempts.
It is not invasive, but you can go full manual if you want.
First, run the migrations. This will create a table to handle the Two Factor Authentication information for each model you set.
php artisan migrate:run
Add the TwoFactorAuthenticatable
contract and the TwoFactorAuthentication
trait to the User model, or any other model you want to make Two Factor Authentication available.
<?php
namespace App;
use Illuminate\Foundation\Auth\User as Authenticatable;
use DarkGhostHunter\Laraguard\TwoFactorAuthentication;
use DarkGhostHunter\Laraguard\Contracts\TwoFactorAuthenticatable;
class User extends Authenticatable implements TwoFactorAuthenticatable
{
use TwoFactorAuthentication;
// ...
}
The contract is used to identify the model using Two Factor Authentication, while the trait conveniently implements the methods required to handle it.
To enable Two Factor Authentication successfully, the User must sync the Shared Secret between its Authenticator app and the application.
Some free Authenticator Apps are FreeOTP, Authy, andOTP, Google Authenticator, and Microsoft Authenticator, to name a few.
To start, generate the needed data using the createTwoFactorAuth()
method. Once you do, you can show the Shared Secret to the User as a string or QR Code (encoded as SVG) in your view.
public function prepareTwoFactor(Request $request)
{
$secret = $request->user()->createTwoFactorAuth();
return view('user.2fa', [
'as_qr_code' => $secret->toQr(), // As QR Code
'as_uri' => $secret->toUri(), // As "otpauth://" URI.
'as_string' => $secret->toString(), // As a string
]);
}
When you use
createTwoFactorAuth()
on someone with Two Factor Authentication already enabled, the previous data becomes permanently invalid. This ensures a User never has two Shared Secrets enabled at any given time.
Then, the User must confirm the Shared Secret with a Code generated by their Authenticator app. This confirmTwoFactorAuth()
method will automatically enable it if the code is valid.
public function confirmTwoFactor(Request $request)
{
return $request->user()->confirmTwoFactorAuth(
$request->input('2fa_code')
);
}
If the User doesn't issue the correct Code, the method will return false
. You can tell the User to double-check its device's timezone, or create another Shared Secret with confirmTwoFactorAuth()
.
Recovery Codes are automatically generated each time the Two Factor Authentication is enabled. By default, a Collection of ten one-use 8-characters codes are created.
You can show them using getRecoveryCodes()
.
public function confirmTwoFactor(Request $request)
{
if ($request->user()->confirmTwoFactorAuth($request->code)) {
return $request->user()->getRecoveryCodes();
} else {
return 'Try again!';
}
}
You're free on how to show these codes to the User, but ensure you show them one time after a successfully enabling Two Factor Authentication, and ask him to print them somewhere.
These Recovery Codes are handled automatically when the User issues a Code. If it's a recovery code, the package will use it and invalidate it.
The User can generate a fresh batch of codes using generateRecoveryCodes()
, which automatically invalidates the previous batch.
public function showRecoveryCodes(Request $request)
{
return $request->user()->generateRecoveryCodes();
}
If the User depletes his recovery codes without disabling Two Factor Authentication, or Recovery Codes are deactivated, he may be locked out forever without his Authenticator app. Ensure you have countermeasures in these cases.
This package hooks into the Attempting
and Validated
events to check the User's Two Factor Authentication configuration preemptively.
- If the User has set up Two Factor Authentication, it will be prompted for a 2FA Code, otherwise authentication will proceed as normal.
- If the Login attempt contains a
2fa_code
with the 2FA Code inside the Request, it will be used to check if its valid and proceed as normal.
This is done transparently without intervening your application with guards, routes, controllers or middleware.
Additionally, ensure you protect your login route.
If you're using a custom Authentication Guard that doesn't fire events, this package won't work, like the
TokenGuard
and theRequestGuard
.
You can deactivate Two Factor Authentication for a given User using the disableTwoFactorAuth()
method. This will automatically invalidate the authentication data, allowing the User to log in with just his credentials.
public function disableTwoFactorAuth(Request $request)
{
$request->user()->disableTwoFactorAuth();
return 'Two Factor Authentication has been disabled!';
}
The following events are fired in addition to the default Authentication events.
TwoFactorEnabled
: An User has enabled Two Factor Authentication.TwoFactorRecoveryCodesDepleted
: An User has used his last Recovery Code.TwoFactorRecoveryCodesGenerated
: An User has generated a new set of Recovery Codes.TwoFactorDisabled
: An User has disabled Two Factor Authentication.
You can use
TwoFactorRecoveryCodesDepleted
to notify the User to create more Recovery Codes, send him to his email a new batch of codes.
If you need to ensure the User has Two Factor Authentication enabled before entering a given route, you can use the 2fa
middleware.
Route::get('system/settings')
->uses('SystemSettingsController@show')
->middleware('2fa');
This middleware works much like the verified
middleware: if the User has not enabled Two Factor Authentication, it will be redirected to a route name containing the warning, which is 2fa.notice
by default.
You can implement this easily using this package:
Route::view('2fa-required', 'laraguard::notice')
->name('2fa.notice');
Two Factor Authentication can be victim of brute-force attacks. The attacker will need between 16.000~34.000 requests each second to get the correct code, or less depending on the lifetime of the code.
Since the listener throws a response before the default Login throttler increments its failed tries, its recommended to use a try-catch in the attemptLogin()
method to keep the throttler working.
/**
* Attempt to log the user into the application.
*
* @param \Illuminate\Http\Request $request
* @return bool
*/
protected function attemptLogin(Request $request)
{
try {
return $this->guard()->attempt(
$this->credentials($request), $request->filled('remember')
);
} catch (HttpResponseException $exception) {
$this->incrementLoginAttempts($request);
throw $exception;
}
}
To show the form, the Listener uses HttpResponseException
to forcefully exit the authentication logic. This exception catch allows to throw the response after the login attempts are incremented.
To further configure the package, publish the configuration files and assets:
php artisan vendor:publish --provider=DarkGhostHunter\Laraguard\LaraguardServiceProvider
You will receive the authentication view in resources/views/vendor/laraguard/auth.blade.php
, and the config/laraguard.php
config file with the following contents:
return [
'listener' => true,
'input' => '2fa_code',
'cache' => [
'store' => null,
'prefix' => '2fa.code'
],
'recovery' => [
'enabled' => true,
'codes' => 10,
'length' => 8,
],
'safe_devices' => [
'enabled' => false,
'max_devices' => 3,
'expiration_days' => 14,
],
'secret_length' => 20,
'totp' => [
'digits' => 6,
'seconds' => 30,
'window' => 1,
'algorithm' => 'sha1',
],
];
return [
'listener' => true,
];
This package works by hooking up the ForcesTwoFactorAuth
listener to the Attempting
and Validated
events as a fallback.
This may work wonders out-of-the-box, but if you want tighter control on how and when prompt for Two Factor Authentication, you can disable it. For example, to create your own 2FA Guard or greatly modify the Login Controller.
return [
'input' => '2fa_code',
];
By default, the input name that must contain the Two Factor Authentication Code is called 2fa_code
, which is a good default value to avoid collisions with other inputs names.
This allows to seamlessly intercept the log in attempt and proceed with Two Factor Authentication or bypass it. Change it if it collides with other login form inputs.
return [
'cache' => [
'store' => null,
'prefix' => '2fa.code'
],
];
RFC 6238 states that one-time passwords shouldn't be able to be usable again, even if inside the time window. For this, we need to use the Cache to save the code for a given period of time.
You can change the store to use, which it's the default used by your application, and the prefix to use as cache keys, in case of collisions.
return [
'recovery' => [
'enabled' => true,
'codes' => 10,
'length' => 8,
],
];
You can disable the generation and checking of Recovery Codes. If you do, ensure Users can authenticate by other means, like sending an email with a link to a signed URL that logs him in and disables Two Factor Authentication, or SMS.
The number and length of codes generated is configurable. 10 Codes of 8 random characters are enough for most authentication scenarios.
return [
'safe_devices' => [
'enabled' => false,
'max_devices' => 3,
'expiration_days' => 14,
],
];
Enabling this option will allow the application to "remember" a device using a cookie, allowing it to bypass Two Factor Authentication once a code is verified in that device. When the User logs in again in that device, it won't be prompted for a Code.
There is a limit of devices that can be saved. New devices will displace the oldest devices registered. Devices are considered no longer "safe" until a set amount of days.
You can change the maximum number of devices saved and the amount of days of validity once they're registered. More devices and more expiration days will make the Two Factor Authentication less secure.
When re-enabling Two Factor Authentication, the list of devices is automatically invalidated.
return [
'secret_length' => 20,
];
This controls the length (in bytes) used to create the Shared Secret. While a 160-bit shared secret is enough, you can tighten or loosen the secret length to your liking.
It's recommended to use 128-bit or 160-bit because some Authenticator apps may have some problems with other non-RFC-recommended lengths.
return [
'totp' => [
'digits' => 6,
'seconds' => 30,
'window' => 1,
'algorithm' => 'sha1',
],
];
This controls TOTP code generation and verification mechanisms:
- Digits: The amount of digits to ask for TOTP code.
- Seconds: The number of seconds a code is considered valid.
- Window: Additional steps of seconds to keep a code as valid.
- Algorithm: The system-supported algorithm to handle code generation.
This configuration values are always passed down to the authentication app as URI parameters:
otpauth://totp/Laravel:taylor@laravel.com?secret=THISISMYSECRETPLEASEDONOTSHAREIT&issuer=Laravel&label=taylor%40laravel.com&algorithm=SHA1&digits=6&period=30
These values are printed to each 2FA data inside the application. Changes will only take effect for new activations.
It's not recommended to edit these parameters if you plan to use publicly available Authenticator apps, since some of them may not support non-standard configuration, like more digits, different period of seconds or other algorithms.
resources/views/vendor/laraguard/auth.blade.php
You can override the view, which handles the Two Factor Code verification for the User. It receives this data:
$action
: The full URL where the form should send the login credentials.$credentials
: An array containing the User credentials used for the login.$user
: The User instance trying to authenticate.$error
: If the Two Factor Code is invalid.$remember
: If the "remember" checkbox has been filled.
The way it works is very simple: it will hold the User credentials in a hidden input while it asks for the Two Factor Code. The User will send everything again along with the Code, the application will ensure its correct, and complete the log in.
This view and its controller is bypassed if the User doesn't uses Two Factor Authentication, making the log in transparent and non-invasive.
If you discover any security related issues, please email darkghosthunter@gmail.com instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.
Laravel is a Trademark of Taylor Otwell. Copyright © 2011-2020 Laravel LLC.