Announcement

Collapse
No announcement yet.

Password Rules

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Password Rules

    In the OTM Account Policy it allows you to add different Password Rules, such as:
    The password must contain at least one numeric character, or the password cannot contain lower case letters. Does anyone have a listing of how the password rules are developed?

    In particular we are trying to add a limitation where the user must have at least one special character.

    Regards,

    Jason

  • #2
    Re: Password Rules

    It appears that the answer is [^\w] does that look correct?

    Comment


    • #3
      Re: Password Rules

      Jason,

      Did anyone ever answer this question for you? I need to apply the same policy here, requiring a special character.

      By the way, I hope you are doing well.

      Thanks,

      Dan

      Comment


      • #4
        Re: Password Rules

        Dan,

        No answer, but the [^\w] did work. Here are other ones that might be useful as well:

        [^\w] Password must contain at least one special character.
        .{8,} Password must have at least 8 characters.
        [:digit:] Password must contain at least one numeric character.
        ^[^a-z]*$ Password cannot contain lower case letters.
        [A-Z] Password must contain at least one capital letter.

        Things are well here, and I hope things are good at you new position.

        Regards,

        Jason
        Last edited by JasonBeard; May 8, 2012, 21:09.

        Comment

        Working...
        X