Splunk Search

How to use rex to isolate fields with double quotes?

Foss
Engager

Hello I am trying to isolate 'msg' field with multiple quotes and when I use rex is either cannot grab what I need or it continues through the data and doesn't stop, thanks!

outcome="Success"msg="The "Account is trusted for delegation" property was modified from No to Yes"cs3="

I have tried | rex field=_raw "msg=\"(?<msg>[^\"]+)" with no success.

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

yuanliu
SplunkTrust
SplunkTrust

If you cannot predict how many quotes will appear in this "field", there  is no general solution.  Your best bet is to bet on that "cs3=" will follow "msg" field.

| rex "msg=\"(?<msg>.+)\"\s*cs3="

If that is not the case, you can try matching exactly even (0, 2, 4, ...) quotes inside quotes, like

| rex "msg=\"(?<msg>([^\"]+\"){0,2,4}[^\"]+)\""

 

View solution in original post

yuanliu
SplunkTrust
SplunkTrust

If you cannot predict how many quotes will appear in this "field", there  is no general solution.  Your best bet is to bet on that "cs3=" will follow "msg" field.

| rex "msg=\"(?<msg>.+)\"\s*cs3="

If that is not the case, you can try matching exactly even (0, 2, 4, ...) quotes inside quotes, like

| rex "msg=\"(?<msg>([^\"]+\"){0,2,4}[^\"]+)\""

 

Foss
Engager

thank you for the feedback, that worked nicely!

0 Karma
Get Updates on the Splunk Community!

Splunk Enterprise Security 8.x: The Essential Upgrade for Threat Detection, ...

 Prepare to elevate your security operations with the powerful upgrade to Splunk Enterprise Security 8.x! This ...

Get Early Access to AI Playbook Authoring: Apply for the Alpha Private Preview ...

Passionate about security automation? Apply now to our AI Playbook Authoring Alpha private preview ...

Reduce and Transform Your Firewall Data with Splunk Data Management

Managing high-volume firewall data has always been a challenge. Noisy events and verbose traffic logs often ...