You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to review the list of external active users that are in my org and that are assigned to profile and or permission set that contain a read all or modify all permission on at least one SObject.
And report that in the User tab in orgcheck.
Maybe disctinguish internal and external users in two sep sub tabs y the way.
The SOQL that you can use to detect this VERY BAD behavior is:
SELECT SobjectType, Parent.Name, Parent.Profile.Name, PermissionsViewAllRecords,
PermissionsModifyAllRecords
FROM ObjectPermissions
WHERE (PermissionsViewAllRecords=true OR PermissionsModifyAllRecords=true)
AND ParentId IN (SELECT PermissionSetId FROM PermissionSetAssignment WHERE Assignee.UserType='CspLitePortal')
The text was updated successfully, but these errors were encountered:
I would like to review the list of external active users that are in my org and that are assigned to profile and or permission set that contain a read all or modify all permission on at least one SObject.
And report that in the User tab in orgcheck.
Maybe disctinguish internal and external users in two sep sub tabs y the way.
The SOQL that you can use to detect this VERY BAD behavior is:
The text was updated successfully, but these errors were encountered: