OIM API to decrypt password
http://massivegaze.blogspot.com.au/p/oim-decrypted-password.html package com . massiveGaze . password ; import Thor.API.Security.XLClientSecurityAssociation ; import com.massiveGaze.connection.OIMConnection ; import com.thortech.xl.dataaccess.tcDataBaseClient ; import com.thortech.xl.dataaccess.tcDataProvider ; import com.thortech.xl.dataaccess.tcDataSet ; import com.thortech.xl.dataaccess.tcDataSetException ; import java.util.Hashtable ; import java.util.logging.Level ; import java.util.logging.Logger ; import javax.security.auth.login.LoginException ; /** * This class gets the OIM Client and uses that to establish a * connection to the OIM Schema. You can query the USR table and * get the password in plain text. * NOTE: The administrator credential must be used for the OIM Client. */ public class DecryptedOIMPassword { public static void main ( String [] args ) { tcDataProvider dbProvider = null ; try ...