Splunk Search

Regex working on regex101 but not in Splunk

jwalzerpitt
Influencer

I have some ADFS logs that I'm trying to pull the IPs from. My regex is as follows:

(?:(^Token\sType):\s*(?:\n(?!Client IP:).*)+\nClient IP:\s*\n|\G)(?<adfs_src>(?:\d{1,3}\.){3}\d{1,3})(?:[,\s]|$)

I tested the regex against an ADFS event on regex101 - link text successfully.

However, pasting into Splunk, the IPs aren't being pulled out as the adfs_src field

Any help would be greatly appreciated

Thx

0 Karma
1 Solution

MuS
Legend

Hi jwalzerpitt,

Try to make it work using the rex command in Splunk, and start with a simplified regex like this:

.... | rex "Client IP:\s+\n|\G(?<adfs_src>(?:\d{1,3}\.){3}\d{1,3})(?:[,\s]|$)" 

Once this works, work your way back to add more criteria to the regex.

cheers, MuS

View solution in original post

woodcock
Esteemed Legend

You have both the global and multiline flags set so you need to ensure that these are set in Splunk, too. Try this:

 .... | rex max_match=0 "(?ms)Client IP:\s+\n|\G(?<adfs_src>(?:\d{1,3}\.){3}\d{1,3})(?:[,\s]|$)" 

jwalzerpitt
Influencer

That worked as well - thx

0 Karma

MuS
Legend

Hi jwalzerpitt,

Try to make it work using the rex command in Splunk, and start with a simplified regex like this:

.... | rex "Client IP:\s+\n|\G(?<adfs_src>(?:\d{1,3}\.){3}\d{1,3})(?:[,\s]|$)" 

Once this works, work your way back to add more criteria to the regex.

cheers, MuS

jwalzerpitt
Influencer

I simplified as follows and it worked like a charm - thx MuS!

(Client IP:\s*\n|\G)(?<adfs_src>(?:\d{1,3}\.){3}\d{1,3})(?:[,\s]|$)
0 Karma

MuS
Legend

Nice, converted to answer. Please accept 🙂

cheers, MuS

0 Karma
Get Updates on the Splunk Community!

Wondering How to Build Resiliency in the Cloud?

IT leaders are choosing Splunk Cloud as an ideal cloud transformation platform to drive business resilience,  ...

Updated Data Management and AWS GDI Inventory in Splunk Observability

We’re making some changes to Data Management and Infrastructure Inventory for AWS. The Data Management page, ...

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...