Hi, i need help.
Account_Name can be found both in eventcodes 4720 and 4728. How do i display the Account_Name information in both eventcodes?
This is what i have:
sourcetype="WinEventLog:Security" (EventCode=4720 AND Account_Name="administrator") OR (EventCode=4728 AND Account_Name="administrator")
| eval AccountCreator=mvindex(Account_Name,0)
| eval AccountCreated=mvindex(Account_Name,1)
| rename Group_Name as "Modified Group"
| table _time, host, AccountCreator, AccountCreated, Modifier, "Modified Group", user
Thx.
... View more