Symantec IGA

 View Only
  • 1.  RegExp format for Identity Manager Password policy

    Posted Jan 27, 2022 09:50 AM

    Hi to all! 

    I'd like to use password policy with RegExp on my Identity Manager.
    The password policy I want is "at least 3 categories of characters chosen from upper case, lower case, numbers and symbols" 


    I've used this reg-exp

    ((?=.*[A-Z])(?=.*[a-z])(?=.*[0-9]))|((?=.*[A-Z])(?=.*[a-z])(?=.*[\*\(\\@\":#_\-\!&\?\)\(\{\}\*\.\/]))|((?=.*[a-z])(?=.*[0-9])(?=.*[\*\(\\@\":#_\-\!&\?\)\(\{\}\*\.\/]))|((?=.*[A-Z])(?=.*[0-9])(?=.*[\*\(\\@\":#_\-\!&\?\)\(\{\}\*\.\/]))

    that is just a OR of these 

    ((?=.*[A-Z])(?=.*[a-z])(?=.*[0-9]))
    ((?=.*[A-Z])(?=.*[a-z])(?=.*[\*\(\\@\":#_\-\!&\?\)\(\{\}\*\.\/]))
    ((?=.*[a-z])(?=.*[0-9])(?=.*[\*\(\\@\":#_\-\!&\?\)\(\{\}\*\.\/]))
    ((?=.*[A-Z])(?=.*[0-9])(?=.*[\*\(\\@\":#_\-\!&\?\)\(\{\}\*\.\/])

    I checked my regexp on https://regex101.com/ and it seems that work

    But it does not work on IM. 

    What I'm doing wrong ?



  • 2.  RE: RegExp format for Identity Manager Password policy

    Posted Feb 01, 2022 11:13 AM

    I got it! 

    In siteminder / IGA there is no support for "lookahead regexp" so I can't use that regular expression. I think it is still possible to do it even if it would be huge!