Jedox password policy
Starting from 2022.2 version Jedox implemented password policy change. That means that users cannot have abc123 passwords. Something more sophisticated should be done. Therefor certain rules needs to be followed:
at least 10 characters
at least one digit
at least one of the symbols !@#$%^&*
at least one uppercase or lowercase letter [A-Z] [a-z]
cannot contain a period or space
Example: Q20J!b5ei0951
This policy can be changed if the company has different set of rules. in that case parameterΒ password-patternΒ in palo.ini allows you to change theΒ passwordΒ settings concerning theΒ passwordΒ length and theΒ passwordΒ pattern/complexity. Any attempt to change theΒ passwordΒ that does not match the defined pattern will result in an error displayed in the ChangeΒ PasswordΒ dialog. TheΒ passwordΒ pattern can be defined by the keyΒ password-pattern <regular_expression>. If the newΒ passwordΒ does not match the pattern, an error message (error code 1004) is returned. <according to KB>.
if in any case you built up the ETL which automatically assign the passwords to newly created users, groovy should look something like this:
def user = API.getProperty('user');
def generator = { String alphabet, int...
