Saviynt unveils its cutting-edge Intelligence Suite products to revolutionize Identity Security!
Click HERE to see how Saviynt Intelligence is transforming the industry.
Saviynt Copilot Icon

Where is the Action for Out of Band Access Detection stored?

Claudio_Origin
New Contributor II
New Contributor II

Hi, we have recently started doing the Revokes of out of band accesses, so some of our endpoints now have the option of "Action for Out of Band Access Detection" set to the 2nd value of Deprovision Access and Re-Create Access Request (see attached).

My question is where in the back end tables (I have looked at the endpoints table and could not see it there) is this value stored? I ask because we want to keep track of which endpoints have this value selected.

Thanks

2 REPLIES 2

rushikeshvartak
All-Star
All-Star

Its stored in configuration table


Regards,
Rushikesh Vartak
If this helped you move forward, click 'Kudos'. If it solved your query, select 'Accept As Solution'.

SELECT E.ENDPOINTNAME,
       CASE
         WHEN C.CONFIGDATA = 'DEPROV' THEN 'Deprovision Access'
         WHEN C.CONFIGDATA = 'DEPROV,RECREATE' THEN
         'Deprovision Access And Re-create Access Request'
         ELSE 'No Action'
       END AS 'Action for Out of Band Access Detection'
FROM   CONFIGURATION C
       JOIN ENDPOINTS E
         ON Cast(SUBSTRING_INDEX(C.NAME, '_', 1) AS UNSIGNED) = E.ENDPOINTKEY
WHERE  C.NAME LIKE '%_OUTOFBANDACTION'; 

rushikeshvartak_0-1729067617348.png

 


Regards,
Rushikesh Vartak
If this helped you move forward, click 'Kudos'. If it solved your query, select 'Accept As Solution'.