From 32b73b850af54ca0d7c9871b1ac24ad4a72387a4 Mon Sep 17 00:00:00 2001
From: Bernd Storath <32197462+kaaax0815@users.noreply.github.com>
Date: Tue, 1 Apr 2025 14:43:48 +0200
Subject: [PATCH] Feat: 2fa (#1783)
* preplan otp, better qrcode library
* add 2fa as feature
* add totp generation
* working totp lifecycle
* don't allow disabled user to log in
not a security issue as permission handler would fail anyway
* require 2fa on login
if enabled
* update packages
* fix typo
* remove console.logs
---
CHANGELOG.md | 6 +
README.md | 1 +
src/app/components/Clients/QRCodeDialog.vue | 4 +-
src/app/components/Form/NullTextField.vue | 2 +-
src/app/components/Form/TextField.vue | 4 +-
src/app/composables/useSubmit.ts | 45 +-
src/app/pages/admin/interface.vue | 2 -
src/app/pages/login.vue | 51 +-
src/app/pages/me.vue | 139 ++++
src/i18n/locales/en.json | 32 +-
src/package.json | 8 +-
src/pnpm-lock.yaml | 616 +++++++-----------
src/server/api/me/totp.post.ts | 65 ++
src/server/api/session.get.ts | 1 +
src/server/api/session.post.ts | 49 +-
.../database/migrations/0000_short_skin.sql | 2 +
.../migrations/meta/0000_snapshot.json | 16 +-
.../migrations/meta/0001_snapshot.json | 18 +-
.../database/migrations/meta/_journal.json | 4 +-
.../database/repositories/user/schema.ts | 2 +
.../database/repositories/user/service.ts | 143 ++++
.../database/repositories/user/types.ts | 20 +
src/server/utils/WireGuard.ts | 9 +-
src/server/utils/types.ts | 7 +
24 files changed, 806 insertions(+), 440 deletions(-)
create mode 100644 src/server/api/me/totp.post.ts
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 015cf4f8..f54ce183 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -10,6 +10,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
We're super excited to announce v15!
This update is an entire rewrite to make it even easier to set up your own VPN.
+## Breaking Changes
+
+As the whole setup has changed, we recommend to start from scratch. And import your existing configs.
+
## Major Changes
- Almost all Environment variables removed
@@ -26,6 +30,8 @@ This update is an entire rewrite to make it even easier to set up your own VPN.
- Removed ARMv6 and ARMv7 support
- Connections over HTTP require setting the `INSECURE` env var
- Changed license from CC BY-NC-SA 4.0 to AGPL-3.0-only
+- Added 2FA using TOTP
+- Improved mobile support
## [14.0.0] - 2024-09-04
diff --git a/README.md b/README.md
index ec6718e7..3f389b8b 100644
--- a/README.md
+++ b/README.md
@@ -38,6 +38,7 @@ You have found the easiest way to install & manage WireGuard on any Linux host!
- Prometheus metrics support
- IPv6 support
- CIDR support
+- 2FA support
> [!NOTE]
> To better manage documentation for this project, it has its own site here: [https://wg-easy.github.io/wg-easy/latest](https://wg-easy.github.io/wg-easy/latest)
diff --git a/src/app/components/Clients/QRCodeDialog.vue b/src/app/components/Clients/QRCodeDialog.vue
index 7a3e7183..9212619b 100644
--- a/src/app/components/Clients/QRCodeDialog.vue
+++ b/src/app/components/Clients/QRCodeDialog.vue
@@ -4,7 +4,9 @@
-
+