2FAuth/README.md

103 lines
4.3 KiB
Markdown
Raw Normal View History

![https://travis-ci.com/github/Bubka/2FAuth](https://img.shields.io/travis/com/bubka/2fauth?style=flat-square)
![https://codecov.io/gh/Bubka/2FAuth](https://img.shields.io/codecov/c/github/Bubka/2FAuth?style=flat-square)
![https://github.com/Bubka/2FAuth/blob/master/LICENSE](https://img.shields.io/github/license/Bubka/2FAuth.svg?style=flat-square)
2020-01-13 16:39:27 +01:00
# 2FAuth
2020-10-03 19:22:20 +02:00
A web app to manage your Two-Factor Authentication (2FA) accounts and generate their security codes
2020-01-13 16:39:27 +01:00
2020-10-12 23:10:53 +02:00
![screens](https://user-images.githubusercontent.com/858858/95789691-47b13180-0cde-11eb-9d06-7c6d2ede5f3c.png)
2020-02-13 22:44:04 +01:00
2020-03-30 09:45:28 +02:00
#### [2FAuth Demo](https://demo.2fauth.app/)
Credentials (login - password) : *demo@2fauth.app* - *demo*
2020-01-13 16:39:27 +01:00
## Purpose
2020-10-08 22:27:56 +02:00
2FAuth is a web based self-hosted alternative to One Time Passcode (OTP) generators like Google Authenticator, designed for both mobile and desktop.
It aims to ease you perform your 2FA authentication steps whatever the device you handle, with a clean and suitable interface.
2020-01-13 16:39:27 +01:00
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)
2020-10-08 22:27:56 +02:00
* I wanted my 2FA accounts to be stored in a standalone database I can easily backup and restore (did you already encountered a smartphone loss with all your 2FA accounts in Google Auth? I did...)
* I hate taking out my smartphone to get an OTP when I use a desktop computer
* I love coding and I love self-hosted solutions
## Main features
* Manage 2FA accounts with QR code flashing/scanning and decoding
* Generate TOTP and HOTP security codes
* User authentication to protect 2FA data stored in 2FAuth
2020-01-13 16:39:27 +01:00
2020-10-17 13:46:46 +02:00
2FAuth is currently fully localized in English and French. See [Contributing](#Contributing) if you want to help on adding more languages.
2020-01-13 16:39:27 +01:00
#### Single user app
2020-10-08 22:27:56 +02:00
2FA are sensitives data so you have to create an account and authenticate yourself to use the app. It is not possible to create more than one user account, the app is thought for personal use.
2020-01-13 16:39:27 +01:00
2020-01-13 21:01:45 +01:00
#### RFC compliance
2020-01-13 16:39:27 +01:00
2FAuth generates OTP according to RFC 4226 (HOTP Algorithm) and RFC 6238 (TOTP Algorithm) thanks to [Spomky-Labs/OTPHP](https://github.com/Spomky-Labs/otphp) php library.
## Requirements
2020-10-12 23:10:53 +02:00
[![Requires PHP7](https://img.shields.io/badge/php-7.3.*-red.svg?style=flat-square)](https://secure.php.net/downloads.php)
* See [Laravel server requirements](https://laravel.com/docs/7.x/installation#server-requirements)
* Any database [supported by Laravel](https://laravel.com/docs/7.x/database)
2020-01-13 16:39:27 +01:00
## 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](https://getcomposer.org/download/)
2020-03-30 09:45:28 +02:00
#### Set up your database
Create a database with one of the supported tools (see Requirements).
For SQLite, place the database `.sqlite` file in the `database/` folder of your 2FAuth installation.
2020-01-13 16:39:27 +01:00
#### Set your variables
2020-03-30 09:45:28 +02:00
In your installation directory make a copy of the `.env.example` file and rename the copy `.env`.
2020-01-13 16:39:27 +01:00
Edit the `.env` file and adapt the settings to your running environment (see instructions in the file)
2020-01-15 23:40:56 +01:00
#### Prepare some stuff
2020-01-13 16:39:27 +01:00
```
php artisan migrate:refresh
php artisan passport:install
2020-01-14 13:46:30 +01:00
php artisan storage:link
php artisan config:cache
2020-01-13 16:39:27 +01:00
```
2020-03-30 09:45:28 +02:00
You are ready to go.
2020-01-13 16:39:27 +01:00
2020-03-30 09:45:28 +02:00
#### For development only
2020-10-08 22:27:56 +02:00
Checkout the 'dev' branch then install and build js dependencies
2020-01-15 23:40:56 +01:00
```
npm install
2020-03-30 09:45:28 +02:00
npm run dev
2020-01-15 23:40:56 +01:00
```
2020-10-08 22:27:56 +02:00
## Upgrading
2020-03-30 09:45:28 +02:00
First, **backup your database**.
2020-01-15 23:40:56 +01:00
2020-03-30 09:45:28 +02:00
Then, using command line :
```
git pull
php composer.phar install
php artisan migrate
php artisan config:clear
```
2020-01-15 23:40:56 +01:00
2020-01-13 16:39:27 +01:00
# Contributing
2020-10-17 13:46:46 +02:00
You can contribute to 2FAuth in many ways:
- By [reporting bugs](https://github.com/Bubka/2FAuth/issues/new?template=bug_report.md), or even better, by submitting a fix with a pull request on the *dev* branch.
- By [suggesting enhancement or new feature](https://github.com/Bubka/2FAuth/issues/new?template=feature_request.md). Please have a look to the [2FAuth development project](https://github.com/Bubka/2FAuth/projects/2), maybe your idea is already there.
- By correcting or completing translations in a language you speak, using the [Crowdin platform](https://crowdin.com/project/2fauth). Ask for your language if this one is lacking.
2020-01-13 16:39:27 +01:00
# License
2020-02-13 22:44:04 +01:00
[AGPL-3.0](https://www.gnu.org/licenses/agpl-3.0.html)