Expand my Community achievements bar.

Announcing the launch of new sub-community for Campaign Web UI to cater specifically to the needs of Campaign Web UI users!
SOLVED

Implementing password validation in Adobe Campaign Classic

Avatar

Level 1

Hi,

I'm trying to implement some simple password validation in xtk:operator input form, for example set minimum length of a password as 8 characters.

To do this, i tried to create some soap service and pass password to it, somehow like this:

  <leave>

    <soapCall name="ValidateCheck" service="cus:validate">

      <param exprIn="[access/@password]" type="string"/>

    </soapCall>

  </leave>

The problem is that password passed already encoded and there is no way to decode this. As i understand the AC use encryptDES function and  generate some unique encode key for each password instance. If i change password properties like set reversable to true, crypt to false, or set the password value directly, the authorizations breaks and user can't login with his new password.

Is there any ways to avoid this problem?

1 Accepted Solution

Avatar

Correct answer by
Level 4

I don't see there is a way to decrypt a password in order to validate if it meets certain requirements. This something either Adobe CM provides the capability to do or not. We have integrated the login with LDAP to push all password management to the OS level managed by network group vs. the Adobe CM admin.

Hopefully there is a way.

Thanks.

View solution in original post

2 Replies

Avatar

Correct answer by
Level 4

I don't see there is a way to decrypt a password in order to validate if it meets certain requirements. This something either Adobe CM provides the capability to do or not. We have integrated the login with LDAP to push all password management to the OS level managed by network group vs. the Adobe CM admin.

Hopefully there is a way.

Thanks.

Avatar

Level 1

Sad, but thanks for the answer!