Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Last revision Both sides next revision
tutorial:adm:password_provisioning [2018/11/16 11:45]
kopro [Password provisioning]
tutorial:adm:password_provisioning [2019/06/12 05:12]
kopro [Attribute Password in schema (__PASSWORD__)]
Line 1: Line 1:
 +====== Password provisioning ======
 +
 +{{ :tutorial:adm:mapping_detail.png?nolink&800|}}
 +
 +For connector that allow password change (table, ad, ldap, ...) is possible provisioning password. Every of these connectors has special settings for password attribute. Eq.:
 +
 +After you choose the password attribute and generate schema for system. It is possible **create** mapping for password. Main password attribute can be mapped as **\_\_PASSWORD\_\_** attribute. 
 +
 +Main password attribute (\_\_PASSWORD\_\_) is sent to end system only with uid, all attributes including another attributes marked as password will be sent in second provisioning operation. If application property (//idm.sec.acc.provisioning.sendPasswordAttributesTogether//) is set to true, only one provisioning operation will be created. This beahvior is only for password change. When CzechIdM creates new one account in end system. Is password sent together with another attributes (some connectors may reimplement the behavior with own - AD).
 +
 +All password attributes will be transformed before will be transformed via transformation scripts to end system. The transformation scripts must return **GuardedString** or **null**, all another object throw exception. All transformation obtain password in **attributeValue**. For transformation script will be applied classic rules for check security and etc.
 +
 +<note tip>Remeber all password attributes must has checked 'Password attribute'. Including main password attribute \_\_PASSWORD\_\_</note>
 +
 +<note important>In older  versions (<9.3.0) exists attribute \_\_PASSWORD\_\_ the attribute still exists but for proper functioning must the attribute has checked checkbox 'Password attribute', otherwise behavior with password change trough system will not work correctly. In existing mapping is password attribute checked for all \_\_PASSWORD\_\_ attributes by flyway script.</note>
 +
 +===== Passwords and transformation =====
 +Transformations on password will be applied in these situations:
 +
 +==== Password change ====
 +User change his password for accounts (doesn't matter if account include CzechIdM account) - classic password change form. After will be password check by password policy it will be started provisioning operation to system with \_\_PASSWORD\_\_, all another attributes marked as password and all another password that must be included in password change.
 +
 +If script for transformation password/s contains errors it will be throw exception:
 +
 +the exception **is not stored** in provisioning operation queue.
 +
 +
 +==== Create new account and password generate ====
 +
 +When administrator/automatic process add to user role with mapped system (mapping for system must contains password attributes. At least one attribute must be marked as password attribute) will be generated new password and this password will be transformed by each script in password attributes. To all script will be sent same password.
 +
 +<note tip>Please check all transformation script for password and remove all debug, info, error logs that the script contains. Into script will be sent user password and password is very sensitive information.</note>
 +
 +Password is generated by password policy for generating that has assigned system. If system doesn't contains password policy for generate password will be generated by CzechIdM default password policy. If even default password policy doesn't exist **no password will be generated**. Into script will be sent null. **Please check attributeValue in script for null!**
 +
 +===== Attribute Password in schema (__PASSWORD__) =====
 +
 +<note tip>If the attribute __PASSWORD__ missing, you must create this attribute manually.</note>
 +
 +{{:schemapass.png|}}
 +
 +  * **Name:** \_\_PASSWORD\_\_
 +  * **Data type:** eu.bcvsolutions.idm.core.security.api.domain.GuardedString
 +  * **Able to create:** true
 +  * **Able to edit:** true
 +  * **Able to read:** true
  
  • by doischert