Skip to content

Commit

Permalink
Enforce a default password policy
Browse files Browse the repository at this point in the history
- Password age min 0, max 180 days
- Check password complexity with ppolicy.so
- Password history length is 12, less than 6 years of passwords
  • Loading branch information
DavidePrincipi committed Oct 16, 2023
1 parent a5b1097 commit 2eebc22
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions server/usr/local/lib/templates/mdb0.ldif
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ cn: default
pwdAttribute: userPassword
pwdCheckQuality: 2
pwdMinAge: 0
pwdMaxAge: 0
pwdMaxAge: 15552000
pwdMinLength: 8
pwdInHistory: 5
pwdInHistory: 12
pwdLockout: FALSE
pwdUseCheckModule: FALSE
pwdUseCheckModule: TRUE
pwdCheckModuleArg: default
pwdExpireWarning: 0

Expand Down

0 comments on commit 2eebc22

Please sign in to comment.