Splunk Search

Getting text from raw event with regex

g_paternicola
Path Finder

 

Hi everyone, 

I'm trying to get a simple text from a raw event, but I can't make it works.

The event looks like this:

2021-09-13_15-24-17.png

and my regex looks like this:

| rex field=_raw "Allow\s(?<GroupName>\w.+)\s+Enroll" 

my issue is, that I only going to get a few of those groups, but not all... for example I will get the Domain Users but not the Enterprise Users which is in the same raw file...

Could please someone help me with this regex?

Labels (3)
Tags (3)
0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

It's not clear to me what the problem is, but I think the rex command is not extracting all instances of the "Allow" field.  If so, then the max_match option should help.

| rex field=_raw max_match=0 "Allow\s(?<GroupName>\w.+)\s+Enroll" 
---
If this reply helps you, Karma would be appreciated.

View solution in original post

richgalloway
SplunkTrust
SplunkTrust

It's not clear to me what the problem is, but I think the rex command is not extracting all instances of the "Allow" field.  If so, then the max_match option should help.

| rex field=_raw max_match=0 "Allow\s(?<GroupName>\w.+)\s+Enroll" 
---
If this reply helps you, Karma would be appreciated.
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...