Default Privilege Zone rules for the OktaHound extension
The following Cypher rules define the default Privilege Zone for the OktaHound extension.
Each rule is defined in a JSON file located in the PrivilegeZoneRules directory of the OktaHound repository.
Devices associated with principals who have SUPER_ADMIN or ORG_ADMIN role assignments.
Copy
Ask AI
MATCH (n:Okta_Device)-[:Okta_DeviceOf]->(:Okta)-[:Okta_HasRoleAssignment|Okta_MemberOf*1..2]->(r:Okta_RoleAssignment)-[:Okta_ScopedTo]->(:Okta_Organization)WHERE r.type = "SUPER_ADMIN"OR r.type = "ORG_ADMIN"RETURN n
Principals with SUPER_ADMIN or ORG_ADMIN role assignments.
Copy
Ask AI
MATCH (n:Okta)-[:Okta_HasRoleAssignment|Okta_MemberOf*1..2]->(r:Okta_RoleAssignment)-[:Okta_ScopedTo]->(:Okta_Organization)WHERE r.type = "SUPER_ADMIN"OR r.type = "ORG_ADMIN"RETURN n