Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update portal.properties #29702

Merged
merged 3 commits into from
Aug 31, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion dotCMS/src/main/resources/portal.properties
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,14 @@
# Note that \ is replaced with \\ to work in Java.
#

# This pattern ensures that passwords must have at least 6 characters and no white spaces.
# This pattern below ensures that passwords must have at least 8 characters and no white spaces.
# Only the specified characters are allowed:
# 1. Uppercase letters: A-Z
# 2. Lowercase letters: a-z
# 3. Digits: 0-9
# 4. Special characters: ! # % + : = ? @
# 5. No white spaces or other characters not included in the specified set.
# The entire password must consist exclusively of the allowed characters from the start (^) to the end ($) of the string.
passwords.regexptoolkit.pattern=/^[!#%+1234567890:=?@ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz]{8,}$/

# This pattern ensures that passwords must have between 6 and 20 valid
Expand Down
Loading