Scenario:
We have CEF audit logging enabled.
Usernames are not parsed correctly since it removes the backslash for the active directory domain and concatenates the domain and username.
i.e.
Domain is CONTOSO
Username is BLARGH
result for user.src in CEF audit log
contosoblargh
What I need is to split on CONTOSO\ and only have the actual username in the user.src key.
Obviously for default admin/service accounts that are local it doesn't apply and parses fine.
Any ideas?
The events are parsed via the CEF parser then I’m guessing?
What is the raw field for the user name that is getting collapsed? Can you share the raw CEF to test/play with?
Can you trace that field to cef.xml (are there any cef-custom.xml at play?) and to table-map(-custom).xml to see what the flow is?
If required you could post process that field for a specific device.type to split the user on known domains and create just the user (and put the domain in another field).
Seeing the raw would be handy
Then we can check the RFE to make sure the slash is carried through.
Eric