Enforcing password policy in SynaMan
By default, SynaMan does not enforce any password policy. Using the following steps you can enforce users to follow certain standards when changing their passwords:
Steps
Important Note
This password policy is not used when administrators create users, allowing them to quickly assign a default password to a new user. However, it will be enforced when a user tries to change their own password.
Password rules
The value parameter takes an integer between 0 and 63. When this value is 0, no rules are enforced. Similarly, when this value is 63 every rule is applied. The value parameter holds a bitmap ORed with the following values:
1 | Lowercase character - Password must have at least one lower case character |
2 | Uppercase character - Password must have at least one upper case character |
4 | Number - Password must have at least one numeric digit |
8 | Special character - Password must have at least one special character, such as @ ! # $ % ^ & |
16 | Length 8 - Password must be at least 8 characters long. This option is ignored if Length 12 is set. |
32 | Length 12 - Password must be at least 12 characters long |
Examples 1
<parameter name="PasswordRule" type="2" value="63"></parameter>
Password must be at least 12 characters long, must have at least one uppercase, lowercase, digit and a special character in it.
Examples 2
<parameter name="PasswordRule" type="2" value="23"></parameter>
Password must be at least 8 characters long, must have at least one uppercase, lowercase, and a digit.
Examples 3
<parameter name="PasswordRule" type="2" value="31"></parameter>
Password must be at least 8 characters long, must have at least one uppercase, lowercase, digit and a special character in it.