Last active
May 27, 2025 15:55
-
-
Save f8al/0ce7b6da9513a340047ff693ec5cd56c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>policyCategoryAuthentication</key> | |
<array> | |
<dict> | |
<key>policyContent</key> | |
<string>policyAttributeLastAuthenticationTime > policyAttributeCurrentTime - (policyAttributeInactiveDays * 24 * 60 * 60)</string> | |
<key>policyIdentifier</key> | |
<string>Inactive Account</string> | |
<key>policyParameters</key> | |
<dict> | |
<key>policyAttributeInactiveDays</key> | |
<integer>35</integer> | |
</dict> | |
</dict> | |
</array> | |
<key>policyCategoryPasswordContent</key> | |
<array> | |
<dict> | |
<key>policyContent</key> | |
<string>policyAttributePassword matches '(.*[A-Z].*){1,}+'</string> | |
<key>policyIdentifier</key> | |
<string>Must have at least 1 uppercase letter</string> | |
<key>policyParameters</key> | |
<dict> | |
<key>minimumAlphaCharactersUpperCase</key> | |
<integer>1</integer> | |
</dict> | |
</dict> | |
<dict> | |
<key>policyContent</key> | |
<string>policyAttributePassword matches '(.*[a-z].*){1,}+'</string> | |
<key>policyIdentifier</key> | |
<string>Must have at least 1 lowercase letter</string> | |
<key>policyParameters</key> | |
<dict> | |
<key>minimumAlphaCharactersLowerCase</key> | |
<integer>1</integer> | |
</dict> | |
</dict> | |
<dict> | |
<key>policyContent</key> | |
<string>policyAttributeLastPasswordChangeTime < policyAttributeCurrentTime - (policyAttributeMinimumLifetimeHours * 60 * 60)</string> | |
<key>policyIdentifier</key> | |
<string>Minimum Password Lifetime</string> | |
<key>policyParameters</key> | |
<dict> | |
<key>policyAttributeMinimumLifetimeHours</key> | |
<integer>24</integer> | |
</dict> | |
</dict> | |
</array> | |
</dict> | |
</plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment