Splunk Search

Extracting Account Name:

wkbevill
Engager

Oct 28 20:08:57 XXX.XXX.com Microsoft-Windows-Security-Auditing[4]: EventID: 4663 An attempt was made to access an object. Subject: Security ID: XXX Account Name: John Account Domain: XXX 

 

My question is how do I extract the "Account Name: user" from this? I tried creating a new field extract with the space delimiter but if I selected John above, it wouldn't pull the account name from the rest of the log entries.

Thanks in advance!

Labels (1)
0 Karma
1 Solution

PickleRick
SplunkTrust
SplunkTrust

Well, delmited fields extractiona work well with... delimited fields. When you have very strict format of your data (like csv).

If you want to extracts parts of a "sentence", you need regex-based extraction.

You need to look for a repeatable part of event that you can "hook" into to find your needed value. In your case it will probably be the constant string "Account Name:" after which the actual username is provided. So you get (assuming that usernames don't contain spaces and symbols)

Account\sName:\s(?<username>\w+)

View solution in original post

0 Karma

PickleRick
SplunkTrust
SplunkTrust

Well, delmited fields extractiona work well with... delimited fields. When you have very strict format of your data (like csv).

If you want to extracts parts of a "sentence", you need regex-based extraction.

You need to look for a repeatable part of event that you can "hook" into to find your needed value. In your case it will probably be the constant string "Account Name:" after which the actual username is provided. So you get (assuming that usernames don't contain spaces and symbols)

Account\sName:\s(?<username>\w+)
0 Karma

nmohammed
Contributor

Try this - 

 

"Account\sName:\s(?P<account_name>.+)\sAccount Domain"
0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...