diff --git a/bin/hardening/10.1.1_set_password_exp_days.sh b/bin/hardening/10.1.1_set_password_exp_days.sh index b7f2079..c34caea 100755 --- a/bin/hardening/10.1.1_set_password_exp_days.sh +++ b/bin/hardening/10.1.1_set_password_exp_days.sh @@ -14,7 +14,7 @@ set -u # One variable unset, it's over HARDENING_LEVEL=3 -OPTIONS='PASS_MAX_DAYS=90' +OPTIONS='PASS_MAX_DAYS=60' FILE='/etc/login.defs' SHA_FILE='/etc/shadow' diff --git a/bin/hardening/10.1.2_set_password_min_days_change.sh b/bin/hardening/10.1.2_set_password_min_days_change.sh index c00e9df..daf4c57 100755 --- a/bin/hardening/10.1.2_set_password_min_days_change.sh +++ b/bin/hardening/10.1.2_set_password_min_days_change.sh @@ -14,7 +14,7 @@ set -u # One variable unset, it's over HARDENING_LEVEL=3 -OPTIONS='PASS_MIN_DAYS=7' +OPTIONS='PASS_MIN_DAYS=1' FILE='/etc/login.defs' SHA_FILE='/etc/shadow'