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

regex in password policy

musthak_ahamad
Regular Contributor
Regular Contributor

when i use a regex in password policy  in saviynt for AD connector we are getting korean characters in the password like below, is there a way to remove this from regex password..? some passwords are generating properly and some have korean characters in it .

T47jqEB?%JJK칸

[This post has been edited by a Moderator to move it to its own thread.]

5 REPLIES 5

rushikeshvartak
All-Star
All-Star

password is entered by user or synced from AD


Regards,
Rushikesh Vartak
If you find the response useful, kindly consider selecting Accept As Solution and clicking on the kudos button.

saviynt generated the password when change password task is getting triggered and pushed to AD .

dgandhi
All-Star
All-Star

What is the regex that you are using?

 

Thanks,
Devang Gandhi
If this reply answered your question, please Accept As Solution and give Kudos to help others who may have a similar problem.

musthak_ahamad
Regular Contributor
Regular Contributor

^(?=.*[0-9])(?=.*[a-z])(?=.*[A-Z])(?=.*[~!@#$%^&?])[^\sILlO0oi1]{13,13}$  

while we are using OOB password policy we don't see any issues in generating , but the reason we are going to regex is to avoid "ILlO0oi1" these. this is producing us the korean & chinese symbols randomly. not sure how to provide in UTF-8 format or  only english.

saviynt provided this solutions and it worked and satisfied our requirement.

^(?=.*[0-9])(?=.*[a-z])(?=.*[A-Z])(?=.*[~!@#$%^&?])(?!.*[iloLOO0\s1]).{13}$