From 1a5379baec02110b00e1efa764ffed6c7deb5960 Mon Sep 17 00:00:00 2001 From: Frank Elsinga Date: Sun, 18 Jan 2026 12:33:53 +0100 Subject: [PATCH] Apply suggestion from @CommanderStorm --- server/password-util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/password-util.js b/server/password-util.js index 60d6241ea..6a7334e35 100644 --- a/server/password-util.js +++ b/server/password-util.js @@ -6,7 +6,7 @@ /** * Minimum password length as per NIST recommendations */ -const MIN_PASSWORD_LENGTH = 8; +const MIN_PASSWORD_LENGTH = 12; /** * Validates a password according to NIST SP 800-63B guidelines.