File perms

This commit is contained in:
Kim Ravn Hansen
2025-10-15 12:28:14 +02:00
parent e12dfd0981
commit 59d73955d0
21 changed files with 202 additions and 111 deletions
Regular → Executable
View File
Regular → Executable
+1 -1
View File
@@ -54,5 +54,5 @@ export function isUsernameSane(candidate) {
export function isPasswordSane(candidate) {
// We know the password must adhere to one of our client-side-hashed crypto schemes,
// so we can be fairly strict with the allowed passwords
return Config.passwordSanityRegex.test(candidate);
return Config.passwordHashSanityRegex.test(candidate);
}
Regular → Executable
View File