This is a project on Multi-factor Authentication System. We have an android application and a simple website (NOTE: this site may not work anymore, Heroku might have stopped hosting it). You can register an account from the website and select one of the three Authentication options - Time-based One Time Password (TOTP) verification, or Fingerprint verification, or both - which you can use alongside Password verification during login. The android application generates TOTP and verifies fingerprint.
The Android application was built for Android 7 and above.
- Download and install the APK of the android application.
- Open the website and register an account and choose an Authentication option.
- Set up authentication options in the Android application by scanning the QR code.
- You can then login to the website and try out the different authentication options.
These instructions are for getting a copy of the project running on your machine for development and testing.
These should be globally installed:
- TypeScript
npm install -g typescript
- ts-node
npm install -g ts-node
- Create a file called
.env
in theserver
folder and copy the contents below. Generate public and private keys using RSA key generator and also create a MongoDB cluster using MongoDB Atlas, replace them to their respective places. The contents of the.env
file:DB_URI = '<ENTER_YOUR_MONGODB_URI_HERE>' PORT = 5000 HOST = 'localhost' PRIVATE_KEY = '<ENTER_YOUR_PRIVATE_KEY_HERE>' PUBLIC_KEY = '<ENTER_YOUR_PUBLIC_KEY_HERE>'
(Type these commands by opening the command prompt (for Windows) in the root directory of this repository.)
- This installs the project packages.
OR (for Windows),
cd server npm install cd ../app flutter pub get
./install.bat
(Type these commands by opening the command prompt (for Windows) in the root directory of this repository.)
- To start the server (runs nodemon for
src/server/app.ts
). This will directly run the typescript files without building javascript files.OR (for Windows),cd server npm run server
./server.bat
- You can then open
http://localhost:5000
.
OR,
- To build and run javascript files
OR (for Windows),
cd server npm run build npm run server-js
./server-build.bat
- You can then open
http://localhost:5000
.
Warning! In .pub-cache\hosted\pub.dartlang.org\flutter_barcode_scanner-2.0.0\android\src\main\java\com\amolg\flutterbarcodescanner\FlutterBarcodeScannerPlugin.java replace all references of FlutterActivity to FlutterFragmentActivity. This is because the local_auth package uses FlutterFragmentActivity and flutter_barcode_scanner uses FlutterActivity.
-
Create and open an Android Virtual Device (AVD) in Android Studio.
-
OR, you can also configure USB Debugging.
(Type these commands by opening the command prompt (for Windows) in the root directory of this repository.)
-
Build and run the project using the following command:
cd app flutter run
OR (for Windows),
./app.bat
-
OR, use vscode flutter extension.
-
Build and run the app in release mode
cd app flutter run --release
OR (for Windows),
./app-rel.bat
-
You can also clean (deleting build files and other generated files) the flutter project using the following command.
cd app flutter clean
OR (for Windows)
./app-clean.bat
- Website: https://multifa.herokuapp.com/
- Android App: https://github.com/amitshky/multiFA/releases