Application Integration with Sailpoint

Hi Guys,

We are integrating an application into Sailpoint IDN to manage the LCM of the application for the users side. They already provided the API for Create, HealthCheck, Edit, Disable and groups. For Health Check and Groups Sailpoint was able to get but for Create and Edit for me to send a data to provision an account they want it to be encrypted.

Is there anyway for Sailpoint IDN to send an encrypted data to application side?

They are using this to encrypt the attributes and data
Online AES Encryption / Decryption | Anycript.
Then they will get the encrypted data and run it postman.

By the way, the application is created internally.

Thanks

Hi @ABV11,

What do you mean by encrypted ?

The Body of the request that you send ?

If you use https all data is encrypted.

Hey Bryan,

Quick questions and appreciate your inputs to them:

i. Is this application storing the data in encrypted format?
ii. If the ask is to secure the data being handled by SailPoint?
For the above questions then SailPoint has the concept of zero trust model enforced ref here.

If the above reference is useful as an additional security you can enforce TLS connection to the webservice connector.

Hi Bryan,

You can use the before-operation rule to encrypt the data before it passes to the endpoint for Provision.

thanks

They are using HTTP that’s why they want to encrypt it.

@ABV11 If I’m understanding correctly, you want to encrypt the API body (which contains user attributes) and send this encrypted payload over to the endpoint. At the moment your app team uses AES encryption/decryption and do it manually.

If that’s the case, you will need to first construct your unencrypted string, and then encrypt it either by your own implementation of AES or via libraries like Apache Commons Crypto (if you have the necessary permissions to use this library) and add it into your body. If you’re using a JSON based request, maybe this can be a new key-value pair for the entire encrypted string.

This most likely will be a web services before operation rule. I’m assuming at the target, someone will manually intercept this encrypted payload request and take the downstream actions, and the credentials will be shared/hardcoded on the source.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.