Tuesday, September 16, 2025

Clean IDs in XML

Steps:-

# Open Notepad++

# Ctrl+H

# Select the following options like highlighted in the screenshot.



Find What : created="[^"]*" 
Replace with : Empty

Find What : id="[^"]*" 
Replace with : Empty

Find What : significantModified="[^"]*" 
Replace with : Empty

Find What : modified="[^"]*" 
Replace with : Empty

(or)

Find What : created="\d+" |id="[a-zA-Z0-9]+" |significantModified="\d+" |modified="\d+"

Replace with : Empty

Find What : significant

Replace with : Empty

Ref: Cleaning XMLs via Regex - IdentityIQ (IIQ) / IIQ Community Knowledge Base - SailPoint Developer Community

Sunday, August 31, 2025

test31

<Source>

import sailpoint.object.ProvisioningPlan;

  import sailpoint.object.ProvisioningPlan.AccountRequest;

  import sailpoint.object.ProvisioningPlan.AttributeRequest;

  import sailpoint.connector.webservices.EndPoint;

  import sailpoint.tools.Util;

  import sailpoint.util.Listl

 

  

  log.error("***currentbody***"+  requestEndPoint.getBody().get("jsonBody")); 

  log.error("***requestEndPoint *** "+  requestEndPoint );

  log.error("***provisioningPlan *** "+  provisioningPlan );

 

  if (provisioningPlan != null @and requestEndPoint != null) {

    String nativeIdentity = plan.getNativeIdentity();

    log.error("Native Identity: " + nativeIdentity);

   List accountRequests = plan.getAccountRequests();

     log.error("accountRequests: " + accountRequests);

   if(accountRequests != null @and accountRequests.size() > 0){

    for (AccountRequest accountRequest : accountRequests) {

      AccountRequest.Operation op = accountRequest.getOperation();

      log.error("Operation: " + op);

      log.error("Account Native Identity: " + accountRequest.getNativeIdentity());

  

List attrRequests = accountRequest.getAttributeRequests();

log.error("attrRequests: " + attrRequests);

if(attrRequests != null @and attrRequests.size() > 0){

      for (AttributeRequest attrRequest : attrRequests) {

  

        String attrName = attrRequest.getName();

        Object attrValue = attrRequest.getValue();

 

 

        if (attrValue instanceof String) {

          log.error("It's a String");

        } else if (attrValue instanceof Integer) {

          log.error("It's an Integer");

        }

 

 

        log.error("Attribute: " + attrName + " | Value: " + attrValue);

 

        // Add 'role_Id' attribute if operation is Modify

        if (op == AccountRequest.Operation.Modify) {

          AttributeRequest attrGrpRequest = new AttributeRequest("role_Id", ProvisioningPlan.Operation.Set, attrValue);

          accountRequest.add(attrGrpRequest);

          log.error("Added role_Id attribute with value: " + attrValue);

        }

  

        if (op == AccountRequest.Operation.Create) {

          AttributeRequest attrGrpRequest = new AttributeRequest("role_Id", ProvisioningPlan.Operation.Set, attrValue);

          accountRequest.add(attrGrpRequest);

          log.error("Added role_Id attribute with value: " + attrValue);

        }

}

      }

  }

    }

  }

 

  log.error("Provisioning rule completed.");

  //return endPoint;

  </Source>

Friday, April 18, 2025

User Level Access Matrix

Reference:
https://documentation.sailpoint.com/saas/help/common/users/user_level_matrix.html

Multifactor Authentication

Reference:
https://documentation.sailpoint.com/saas/help/common/strong_auth.html

Thursday, April 17, 2025

CLI

Reference :
https://developer.sailpoint.com/docs/tools/cli/

ISC Connectors

Reference : 
https://community.sailpoint.com/t5/IdentityNow-Connectors/Identity-Security-Cloud-Connectors/ta-p/80019

Wednesday, April 16, 2025

Leading Practices

1.Locate VAs close to sources

2.Restarting the VA cluster is almost always the best first action to resolve problems with a VA

3.Use Static IP addresses to simplify networking setup and monitoring

4.To avoid a single point of failure in your environment, maintain a 1:1 VA-to-VM ratio

5.Create New VAs to Switch Deployment Locations and Platforms

6.Allow inbound communications over SSH (port 22) secure shell access for administrative purposes so you can access the VA from inside your network

7.Deploy a minimum of 2 VAs per cluster

8.Separate Sandbox and Production clusters

9.Allow unrestricted outbound traffic on ports 53 (DNS), 123 (NTP), and 443 (HTTPS). As an alternative, you can set up a proxy or single point of access. (Network proxy, firewalls, and caching products can interfere with VA communications)

10.Optional: for added security within your network, configure VAs to communicate with connected sources over Transport Layer Security (TLS)

Email Notifications

Reference:

https://documentation.sailpoint.com/saas/help/common/getting_notified_org_health.html

System and Network Requirements

Reference:
System and Network Requirements - SailPoint Identity Services

Identity Security Cloud Updates & Announcements

Reference:
https://community.sailpoint.com/t5/Identity-Security-Cloud-Updates/bg-p/Updates

SailPoint Identity Services Glossary

Reference:
https://documentation.sailpoint.com/saas/help/common/glossary.html

IAM, IGA & Identity Security

IAM sets up the employee's account so they can log in and access the application with their credentials. IGA makes sure that access requ...

Featured Articles