LibrePortal/scripts/config/password/password_generate.sh
librelad be7d6813ef revert(secrets): drop the digit constraint on generated passwords
Slots only need to be independent of each other, which the \b anchoring in the
RANDOMIZED* replacers already guarantees. Constraining the character mix was
solving a different problem than the one asked for.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-08-18 19:35:05 +01:00

12 lines
344 B
Bash
Executable File

#!/bin/bash
generateRandomPassword()
{
local password=""
local length=${CFG_GENERATED_PASS_LENGTH:-20} # Default to 20 if not set
# Generate password with letters and numbers only (no special chars)
password=$(dd if=/dev/urandom bs=64 count=1 2>/dev/null | base64 | tr -d '+/=' | head -c $length)
echo "$password"
}