reflar / twofactor
Add factor authentication to Flarum
This package's canonical repository appears to be gone and the package has been frozen as a result.
Installs: 1 451
Dependents: 0
Suggesters: 0
Security: 0
Stars: 8
Watchers: 3
Forks: 3
Language:JavaScript
Type:flarum-extension
Requires
- authy/php: ^3.0
- flarum/core: ^0.1.0-beta.8
- pragmarx/google2fa: ^3.0.1
- twilio/sdk: ^5.16.7
Conflicts
This package is not auto-updated.
Last update: 2021-01-27 00:31:10 UTC
README
Importing from the old twofactor
- Simply install this, everything will be transfered to the new extension automatically
Please read the install guide!
A Flarum extension that increases security by adding TOTP and Twillio two factor authentication
Usage
- As a user, go to your account settings page and follow the prompts to setup twofactor
- Admins have the option to link their Twillio account to allow users to recieve codes via text
Installation
This extension requires a bit more setup. These steps are optional but will greatly increase the security of this plugin.
First install it with composer:
composer require reflar/twofactor
Then login and enable the extension.
!!Make sure to undo this if you ever uninstall this extension!!
If you have Apache, add these lines right after the "RewriteEngine on"
RewriteCond %{REQUEST_URI} ^/login
RewriteRule ^(.*)$ - [F,L]
If you have Nginx add these lines to your server block:
location ~ ^/login {
deny all;
}
Q: What does this do? A: This extension uses a custom login handler and therefore a different url to send the login request to. If someone changes the url back to the default they could bypass the twof factor auth.
To Do
- Requests?
Issues
- None known