Hi,
I'm writing an LDAP plugin to detect AD user/group membership changes. For detecting any changes to the user objects, I'm depending on 'uSNChanged' attribute. So when I query next time, I'll only get delta changes.
However, if I make any changes to the group membership like adding a user/removing a user from a group, the user's 'usNChanged' doesn't change.
I tried querying the group based on the modifyTimeStamp and it does return a list of groups that may have changed the group membership. However, it gives the full list of members belonging to that group at that particular instance but not the delta.
Is there a way to the delta of group membership changes using LDAP? I see many people implemented AD plugin to monitor audit events on the AD and then create a delta but I cannot create any AD plugin at the instance.
Any help is highly appreciated.