A Web app to manage your Two-Factor Authentication (2FA) accounts and generate their security codes
Go to file
Bubka eaabe6e9e3 Make the accounts sortable and persist new order.
Deactivate Pull-to-refresh feature to prevent side effects
2020-03-27 22:36:01 +01:00
app Make the accounts sortable and persist new order. 2020-03-27 22:36:01 +01:00
bootstrap initial commit 2019-05-20 07:37:41 +02:00
config Bump version number 2020-03-23 23:01:06 +01:00
database Add order column to twofaccounts table 2020-03-26 01:37:39 +01:00
public Recompile assets 2020-03-23 23:04:39 +01:00
resources Make the accounts sortable and persist new order. 2020-03-27 22:36:01 +01:00
routes Make the accounts sortable and persist new order. 2020-03-27 22:36:01 +01:00
storage Replace bg asset by base64 image in css 2020-01-09 09:23:54 +01:00
tests Complete OptionTest coverage 2020-03-23 21:58:15 +01:00
.editorconfig initial commit 2019-05-20 07:37:41 +02:00
.env.example Set IsDemoApp option as an .ENV variable 2020-03-18 18:37:57 +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 assets to master to ease installation 2020-03-12 11:56:41 +01:00
.styleci.yml initial commit 2019-05-20 07:37:41 +02:00
.travis.yml Remove unwanted php 7.1 from Travis-CI configuration 2020-03-12 08:57:56 +01:00
artisan initial commit 2019-05-20 07:37:41 +02:00
changelog.md Add changelog 2020-03-23 23:01:28 +01:00
composer.json Add spatie/eloquent-sortable and Doctrine/dbal packages 2020-03-25 21:57:28 +01:00
composer.lock Add spatie/eloquent-sortable and Doctrine/dbal packages 2020-03-25 21:57:28 +01:00
LICENSE Add LICENSE file 2020-01-11 00:13:04 +01:00
package-lock.json Add vue.draggable npm package 2020-03-27 22:28:40 +01:00
package.json Add vue.draggable npm package 2020-03-27 22:28:40 +01:00
phpunit.xml Seeder replaced by factories 2019-06-06 13:40:06 +02:00
README.md Update PHP requirements and badges in README.MD 2020-03-12 09:46:14 +01:00
server.php initial commit 2019-05-20 07:37:41 +02:00
webpack.mix.js Extract vendor packages in any mix build 2020-03-12 12:19:23 +01:00

https://travis-ci.com/github/Bubka/2FAuth https://codecov.io/gh/Bubka/2FAuth https://github.com/Bubka/2FAuth/blob/master/LICENSE

2FAuth

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

screens

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 with QR code scanning and decoding
  • Generate TOTP and HOTP tokens
  • User authentication to protect access to 2FA accounts

Single user app

2FA are sensitives data so an authentication is needed to use the app. And because they are usually 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

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 some stuff

php artisan migrate:refresh
php artisan passport:install
php artisan storage:link
php artisan config:cache
php artisan vue-i18n:generate

Install js dependencies

npm install

Build

npm run dev or npm run prod

You are ready to go.

Contributing

to complete

License

AGPL-3.0