Hi everyone,
I have this situation: I create Accounts through a custom task and provision them to LDAP (Red Hat Directory).
The Password is sent via email to the Account in order to change it at the first login in IGL.
I'm using a SQL node to generate a random password but is not matching the password policy defined.
Is there another way to generate a random password matching the policy?
I'm using RSA IGL 7.1.1
Thank you,
Marta
What if you pick a character randomly with substr from a string which contains all of your special characters?
I mean instead of '!' you should use SUBSTR('!%+?_=', DBMS_RANDOM.VALUE(1,6), 1) or something like this.