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!

Why You Can't Miss .conf25: Unleashing the Power of Agentic AI with Splunk & Cisco

The Defining Technology Movement of Our Lifetime The advent of agentic AI is arguably the defining technology ...

Deep Dive into Federated Analytics: Unlocking the Full Power of Your Security Data

In today’s complex digital landscape, security teams face increasing pressure to protect sprawling data across ...

Your summer travels continue with new course releases

Summer in the Northern hemisphere is in full swing, and is often a time to travel and explore. If your summer ...