Splunk Search

REGEX for authentication logs

hartfoml
Motivator

I have authentication logs like below:

,AUTHN_METHOD_FOO,123!@#123!@#123!@#asdfgdvfd,123!@#123!@#123!@#asdfgdvfd,123!@#123!@#123!@#asdfgdvfd,123!@#123!@#123!@#asdfgdvfd,username,FIRST,LAST,

I want to use regex to build transform for a field called username and first and last

I had this but it didn't work

rex "(?i)AUTHN_METHOD_*+,*+,*+,*+,*+,(?P<username>[^,]+)"

Any help would be great!!!

Tags (1)
0 Karma
1 Solution

somesoni2
Revered Legend

Try this

rex "(?i)AUTHN_METHOD_\w+,.*,(?<username>[^,]+),(?<first>[^,]+),(?<last>[^,]+)"

View solution in original post

somesoni2
Revered Legend

Try this

rex "(?i)AUTHN_METHOD_\w+,.*,(?<username>[^,]+),(?<first>[^,]+),(?<last>[^,]+)"

hartfoml
Motivator

Thanks, I have a problem becasue the \w+ could be one work or several like this "SUCCESS_TEMPORARY_FIXED_TOKENCODE" and the .* for the 4 sets of guid numbers seems odd

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Community Content Calendar, September edition

Welcome to another insightful post from our Community Content Calendar! We're thrilled to continue bringing ...

Splunkbase Unveils New App Listing Management Public Preview

Splunkbase Unveils New App Listing Management Public PreviewWe're thrilled to announce the public preview of ...

Leveraging Automated Threat Analysis Across the Splunk Ecosystem

Are you leveraging automation to its fullest potential in your threat detection strategy?Our upcoming Security ...