diff options
author | Alex Muller <alex@mullr.net> | 2017-01-04 00:03:35 +0100 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2017-01-07 17:38:38 +0100 |
commit | eb4ba5cfdbaab8d649406571f6c0c89869303d20 (patch) | |
tree | dfae77eecb2c7cdc15081625f41f5db40e5f1235 /conf | |
parent | 8914a41db938194efc021f842c89d47ff6b522c9 (diff) | |
download | aur-eb4ba5cfdbaab8d649406571f6c0c89869303d20.tar.gz aur-eb4ba5cfdbaab8d649406571f6c0c89869303d20.tar.xz |
Increase minimum password length to 8 characters
There are 95 printable ASCII characters which with a minimum length of 4
gives 95^4 or 81 million possible passwords. Increasing the minimum
length to 8 increases the number of possible passwords by a factor of
about 10^7.
Relates to FS#52297.
Signed-off-by: Alex Muller <alex@mullr.net>
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
Diffstat (limited to 'conf')
-rw-r--r-- | conf/config.proto | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/config.proto b/conf/config.proto index 96fad807..63e24583 100644 --- a/conf/config.proto +++ b/conf/config.proto @@ -9,7 +9,7 @@ password = aur [options] username_min_len = 3 username_max_len = 16 -passwd_min_len = 4 +passwd_min_len = 8 default_lang = en sql_debug = 0 max_sessions_per_user = 8 |