/
Crowd password 정책 설정
Crowd password 정책 설정
Crowd directory의 Password regex 항목을 이용하여 Password 정책을 설정
(java.util.regex.Pattern 의 패턴대로 설정)
설명: https://confluence.atlassian.com/crowd/configuring-an-internal-directory-18579551.html
Password Regex
Regex pattern which new passwords will be validated against. The regular expression format used is the java.util.regex.Pattern. For example, for an alphanumeric password of at least 8 characters, you could use the pattern:
[A-Za-z0-9]{8,}
예) 8자리 이상이고, 특수문자, 소문자, 대문자, 숫자 조합의 설정
(?=.{8,})(?=.*[~`!@#$%\\^&*()-])(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9])