Uploaded image for project: 'Directory ApacheDS'
  1. Directory ApacheDS
  2. DIRSERVER-1735

When ads-pwdmaxage attribute is set to more then 2147483, then all user passwords are expirer forever.

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Major
    • Resolution: Fixed
    • 2.0.0-M7
    • 2.0.0-M8
    • core
    • None

    Description

      We want to configure password max age for 90 days. We set ads-pwdmaxage to value 7776000. From this moment all user passwords are always expired. We found the root cause:
      There is a bug in source code. package org.apache.directory.server.core.authn.PasswordUtil class. Method
      public static boolean isPwdExpired( String pwdChangedZtime, int pwdMaxAgeSec ).
      You multiply -> long time = pwdMaxAgeSec * 1000;
      pwdMaxAgeSec is int and when it is 7776000 multiplied by 1000 will get out of int range.
      Please convert pwdMaxAgeSec to long before multiplying it by 1000 and assigning the result into long time.

      Attachments

        Activity

          People

            pamarcelot Pierre-Arnaud Marcelot
            oldrich.novak@sciamus.cz Oldrich Novak
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: