From d1cf7b2fb2427f291e446f4cac33e9824e094b43 Mon Sep 17 00:00:00 2001 From: Maximiliano Sandoval Date: Wed, 26 Feb 2025 13:20:00 +0100 Subject: [PATCH] user edit: increase minimum length for new passwords to 8 characters This follows current NIST recommendations and only impacts new passwords. We rolled out similar changes in pve-manager [0] and the installer [1] already. [0]: https://git.proxmox.com/?p=pve-manager.git;a=commit;h=421f03779a3cf04fc15c3efdb6ae99197a858e7d [1]: https://git.proxmox.com/?p=pve-installer.git;a=log;h=2be676622e57c9c57caf2765dc4d5e3d64b7ccc7 Signed-off-by: Maximiliano Sandoval [TL: commit message style nits and add slightly more context] Signed-off-by: Thomas Lamprecht --- js/UserEdit.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/UserEdit.js b/js/UserEdit.js index bd94686..8c67312 100644 --- a/js/UserEdit.js +++ b/js/UserEdit.js @@ -47,7 +47,7 @@ Ext.define('PMG.UserEdit', { xtype: 'textfield', inputType: 'password', fieldLabel: gettext('Password'), - minLength: 5, + minLength: 8, allowBlank: false, name: 'password', listeners: {