Announcing the Saviynt Knowledge Exchange unifying the Saviynt forums, documentation, training,
and more in a single search tool across platforms. Read the announcement here.

Password policy for AD service Account

Joon
Regular Contributor II
Regular Contributor II

Hello All,

Currently, in our AD, the password policy is set to reject when three consecutive numbers are entered. like 123, 234, 456.

We also have a blacklist added to saviynt for certain words or common PWs but I am not sure how to implement this. Can you please help to satisfy the PW policy about the consecutive numbers ?

3 REPLIES 3

Dhruv_S
Saviynt Employee
Saviynt Employee

Hi @Joon 

OOTB option to Reject three consecutive numbers in password policy is currently not available.

We will check and let you know if this can be achieved by Regex. 

Regards,
Dhruv Sharma
If this reply answered your question, please accept it as Solution to help others who may have a similar problem.

Joon
Regular Contributor II
Regular Contributor II

Thanks Dhruv! I am looking forward to your reply

Dhruv_S
Saviynt Employee
Saviynt Employee

Hi @Joon 

Please try the below regex and test thoroughly. Please note that only 1st condition has been included in the regex. If you have any other constraints, it need to be modified accordingly. It accepts alphabets, numbers and special characters and doesn't allow the three consecutive numbers in the expression.

^(?!.*(?:012|123|234|345|456|678|789))[A-Za-z0-9!@#$%^&*()_+{}\[\]:;<>,.?~\\-]*$

Regards,
Dhruv Sharma
If this reply answered your question, please accept it as Solution to help others who may have a similar problem.