A Web app to manage your Two-Factor Authentication (2FA) accounts and generate their security codes
Go to file
2020-01-15 23:00:06 +01:00
app Complete and fix Request/Reset password feature 2020-01-15 11:48:22 +01:00
bootstrap initial commit 2019-05-20 07:37:41 +02:00
config Implement i18n localization based on Laravel lang files 2020-01-12 15:12:32 +01:00
database Remove softDelete from User model 2020-01-14 11:08:21 +01:00
public Rebuild 2020-01-14 23:51:42 +01:00
resources Reorganize resources/js folder 2020-01-15 23:00:06 +01:00
routes Add forgot password form 2020-01-14 17:06:59 +01:00
storage Replace bg asset by base64 image in css 2020-01-09 09:23:54 +01:00
tests Fix user controller unit tests 2020-01-14 11:50:20 +01:00
.editorconfig initial commit 2019-05-20 07:37:41 +02:00
.env.example Add .env.example file 2020-01-13 15:22:25 +01:00
.env.testing in memory db for testing 2019-05-23 21:27:27 +02:00
.env.travis in memory db for testing 2019-05-23 21:27:27 +02:00
.gitattributes initial commit 2019-05-20 07:37:41 +02:00
.gitignore Add built files from .gitignore 2020-01-15 22:55:32 +01:00
.styleci.yml initial commit 2019-05-20 07:37:41 +02:00
.travis.yml in memory db for testing 2019-05-23 21:27:27 +02:00
artisan initial commit 2019-05-20 07:37:41 +02:00
composer.json Implement i18n localization based on Laravel lang files 2020-01-12 15:12:32 +01:00
composer.lock Update php dependencies 2020-01-13 20:56:14 +01:00
LICENSE Add LICENSE file 2020-01-11 00:13:04 +01:00
package-lock.json Update npm dependencies 2020-01-07 22:43:41 +01:00
package.json Update npm dependencies 2020-01-07 22:43:41 +01:00
phpunit.xml Seeder replaced by factories 2019-06-06 13:40:06 +02:00
README.md Update readme.md 2020-01-14 13:46:30 +01:00
server.php initial commit 2019-05-20 07:37:41 +02:00
webpack.mix.js Reorganize resources/js folder 2020-01-15 23:00:06 +01:00

Travis (.com)

2FAuth

A web app to manage your Two-factors Auth (2FA) accounts and generate their TOTP tokens

Purpose

2FAuth is a web based self-hosted alternative to One Time Passcode (OTP) generators like Google Authenticator that you can use both on mobile or desktop.

I created it because :

  • Most of the UIs for this kind of apps show tokens for all accounts in the same time with stressful countdowns (in my opinion)
  • I wanted my 2FA accounts to be stored in a database I can easily backup and restore.
  • I hate taking out my smartphone to get an OTP when I use a desktop computer.
  • I love coding and I love self-hosted solution

Features

  • Manage 2FA accounts (add, edit, delete), with QR code support
  • Generate tokens
  • User authentication to protect access to 2FA accounts

Single user app

2FA are sensitives data so it is necessary to sign in an user account in order to use the app. And because they are owned by the same person, it is not possible to create more than one account.

RFC compliance

2FAuth generates OTP according to RFC 4226 (HOTP Algorithm) and RFC 6238 (TOTP Algorithm) thanks to Spomky-Labs/OTPHP php library.

Requirements

  • Requires PHP7
  • MySQL or SQLITE database

Installation (using command line)

Clone the repo

git clone https://github.com/bubka/2fauth.git

Install all php dependencies

php composer.phar install

Don't have composer? you can get it here

Set your variables

In your installation directory make a copy of the .env.example file and rename the copy .env.

Edit the .env file and adapt the settings to your running environment (see instructions in the file)

Prepare the database

php artisan migrate:refresh
php artisan passport:install
php artisan storage:link
php artisan config:cache

Contributing

to complete

License

AGPL-3.0