Forum Discussion
Arnoldas
Jan 18, 2020Copper Contributor
Display user role in AD
hello, I'm creating a query to display AD accounts activity. Such as account creation. I would like to see who has reacted an account (With caller command) I would like to see Users role as well...
Arnoldas
Jan 21, 2020Copper Contributor
Thanks for the information provided!
Will let you know what was the outcome.
Thanks one more time.
Arnold
Arnoldas
Jan 23, 2020Copper Contributor
Hello,
I have managed to gather some code but sadly it's not providing info needed in the alert itself.
Code itself is straight forward:
AuditLogs
| where OperationName == "Add user"
| extend userPrincipalName_ = tostring(parse_json(tostring(InitiatedBy.user)).userPrincipalName)
| extend userPrincipalName2_ = tostring(TargetResources[0].userPrincipalName)
| extend AccountCustomEntity = userPrincipalName_
| extend AccountCustomEntity2 = userPrincipalName2_
It does generate info needed in the logs tab. Such as who performed activity userPrincipalName_ and who was impacted userPrincipalName2_.
But when I add this query to alert it only generates userPrincipalName_ name only.
I want to see who performed what based on OperationName and who was impacted.
Maybe you can assist me here as well?
thanks in advance,
Arnold
Arnold
- CliveWatsonJan 23, 2020Former Employee
You can create a merges column (called here AggregatedValue), I used strcat to create a comma separated list of the 4 items
AuditLogs | where OperationName == "Add user" | extend userPrincipalName_ = tostring(parse_json(tostring(InitiatedBy.user)).userPrincipalName) | extend userPrincipalName2_ = tostring(TargetResources[0].userPrincipalName) | extend AccountCustomEntity = userPrincipalName_ | extend AccountCustomEntity2 = userPrincipalName2_ | extend AggregatedValue = strcat (userPrincipalName_,", ", userPrincipalName2_,", ", AccountCustomEntity,", ", AccountCustomEntity2) | summarize count() by AggregatedValue
d
- ArnoldasJan 24, 2020Copper Contributor
Hey, your help is much appreciated!
I managed to display the information needed by adding one account as AccountCustomEntity and other by HostCustomEntity:
AuditLogs| where ActivityDisplayName == "Add user"| extend userPrincipalName_ = tostring(parse_json(tostring(InitiatedBy.user)).userPrincipalName)| extend userPrincipalName2_ = tostring(TargetResources[0].userPrincipalName)| extend AccountCustomEntity = userPrincipalName_| extend HostCustomEntity = userPrincipalName2_This does work, but that's being said it is not accurate as it should be two AccountCustomEntites and one should be AccountCustomEntity = userPrincipalName_ which should display the username of account which started ActivityDisplayName and AccountCustomEntity2 should be impacted account.So maybe you know how to display two AccountCustomEntites?Or my approach is making no sense?Regards,Arnold- CliveWatsonJan 24, 2020Former Employee
Something like this?
AuditLogs | where ActivityDisplayName == "Add user" | extend userPerformingAction = tostring(parse_json(tostring(InitiatedBy.user)).userPrincipalName) | extend userAmended = tostring(TargetResources[0].userPrincipalName) | summarize by userPerformingAction, userAmended, ActivityDisplayName, Result