using: Splunk Add-on for Microsoft Window 8.5.0
We have created report listing users that a part of specific groups using this logic
| inputlookup AD_Obj_User
| lookup AD_Obj_Group member AS dn
we noticed users disappearing from these reports when u user was moved to another ou.
This is what we see happening when we move a user to another group:
1: in the AD_Obj_User lookup the dn changes to cn=username, ou=NewGroup, ......
2: in the AD_Obj_Group lookup in the member files the user dn does not change, but still looks like cn=username, ou=NewGroup, ......
Because the dn of the user and the dn in the member field are now different the user disappears from the report.
As part of our debugging Efford we tried updating another property of the group (description) an after this also the member field in AD_Obj_Group is updated, and the user is back up the report again.
This looks like a bug to me, but maybe I'm missing something. Is anyone able to solve this mystery?
... View more