Symantec Access Management

 View Only
  • 1.  Regular Expression Doubt

    Posted Dec 11, 2013 05:14 AM

    I am trying to use regular expression to block certain patterns of password.

    Please comment on the syntax for case insensitive characters in regular expression for the siteminder password policy



  • 2.  RE: Regular Expression Doubt

     
    Posted Dec 16, 2013 03:21 PM
    avijit.ajay:

    I am trying to use regular expression to block certain patterns of password.

    Please comment on the syntax for case insensitive characters in regular expression for the siteminder password policy


    Hi All,

    Any ideas here for this one?

    Thanks!

    Chris



  • 3.  RE: Regular Expression Doubt

    Broadcom Employee
    Posted Dec 18, 2013 09:19 AM
    avijit.ajay:

    I am trying to use regular expression to block certain patterns of password.

    Please comment on the syntax for case insensitive characters in regular expression for the siteminder password policy

    SiteMinder support standard set of regular expressions,
     Good site to test your expression for matches:  http://ioctl.org/jan/test/regexp.htm

    Example three sections match and how it was resolved

    Exp1 : ([A-Za-z]+[0-9]*)([0-9]+[0-9a-zA-Z]*)([0-9a-zA-Z]+.*)$

    Matched string "A999a23@"
    Pattern to match "([A-Za-z]+[ 0-9]*)([0-9]+[0-9a-zA-Z]*)([0-9a-zA-Z]+.*)$"
    index (based at zero):0
    Original string: "A999a23@"
    Last matched portion: "A999a23@"
    Matched portion 1 = "A99"
    Matched portion 2 = "9a2"
    Matched portion 3 = "3@"