Password History, Password Dictionary, and Personal Data password options are available for Database connections using the Auth0 data store and for Custom Database connections that have import mode enabled. Password limitations in Social and Enterprise connections are enforced by each provider.

Password history
Enabling this option disallows users from setting passwords that repeat passwords they’ve used in the recent past. Auth0 can retain a password history for each user, up to a maximum of 24 entries per user. Note that when this option is enabled, only password changes going forward will be affected because the history will not have been kept prior to that point. Even if you do not have a required password change policy (for example, forcing users to change passwords every six months), you still may want to disallow the use of previous passwords. For example, if a security breach in your organization causes you to force users to change their passwords everywhere, you will want to ensure they aren’t just re-using passwords that might be compromised.Password dictionary
Enabling this option disallows users from setting passwords to common options included in a default dictionary list. You may also include your own prohibited passwords by entering them in the text field in this section. Note that Auth0 uses case-insensitive comparison with the Password Dictionary feature.Personal data
Enabling this option disallows users from setting passwords that contain any part of their personal data. This includes:name
username
nickname
user_metadata.name
user_metadata.first
user_metadata.last
- The first part of the user’s email will also be checked -
firstpart
@example.com
John1234
would not be allowed.
API access
Because password options are associated with a Database connection, you can access them using the ’s Connections endpoints. Password-related fields are stored in theoptions
object. Because these fields are not used for non-database connections, they are not required, so if they are not enabled for a connection, they may not appear.
For example, after setting a password policy, a MySQL database connection will look like this:
options
object that all three password options are enabled, password history will store the 5 most recent passwords, and each password will be cross-checked against two dictionaries: entry1
and entry2
.
If you are creating a connection or updating an existing connection using the Management API, you can update the password policy for the connection using these fields.