Splunk Search

field extraction with rex

borisk95
New Member

Field sample: <"Data Name='Description'>Microsoft ® Console Based Script Host"<"/Data">

| rex ""(?[a-zA-Z0-9.: \\]+)<\/Data> 
| rex (?[a-zA-Z0-9.: \\]+)
| rex (?[a-zA-Z0-9.: \\]+)

Missing or malformed messages.conf stanza for SEARCHFACTORY:UNKNOWN_OP__a
using | rex (?\d+)<\/EventID> which does not have <"EventID='something'"> works fine

0 Karma

borisk95
New Member

The error was in case of placing ["'] symbols

0 Karma

borisk95
New Member

| rex (?\w+[a-zA-Z0-9:;'"./\])</\Data>
| lookup sys.csv EventID OUTPUT Description
| stats c by EventID,Date,Description

Unknown search command 'a'.

0 Karma

woodcock
Esteemed Legend

I am making a HUGE guess that the desire is that a field called Description should obtain a value called "Microsoft ® Console Based Script Host" and that other similarly encoded KVPs should be created likewise. If so, try this:

... | eval _raw="<\"Data Name='Description'>Microsoft ® Console Based Script Host\"<\"/Data\">" 
| rex max_match=0 "Data Name='(?<key>[^']+)'\>(?<value>[^\"]+)"
| rex field=value mode=sed "s/^/\"/ s/$/\"/"
| eval _raw = mvzip(key, value, "=")
| kv
0 Karma

borisk95
New Member

""<"Data Name='Image'">C:\Program Files\Splunk\bin\splunkd.exe<"/Data">""

| rex field=_raw (?[a-zA-Z0-9.: \]+)<\/Data>

this is my example

0 Karma

richgalloway
SplunkTrust
SplunkTrust

What is your question? What field(s) are you trying to extract?
Please edit your question to restore the regular expressions. Don't change the indentation.

---
If this reply helps you, Karma would be appreciated.
0 Karma

borisk95
New Member

""<"Data Name='Image'">C:\Program Files\Splunk\bin\splunkd.exe<"/Data">""

| rex field=_raw (?[a-zA-Z0-9.: \]+)<\/Data>

this is my example

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Event Series: Level up your SOC: Advancing with Splunk Enterprise Security

AI has fundamentally raised the stakes for security operations, and this three-part series is your guide to ...

Announcing Modern Navigation: A New Era of Splunk User Experience

We are excited to introduce the Modern Navigation feature in the Splunk Platform, available to both cloud and ...

SOC4Kafka - New Kafka Connector Powered by OpenTelemetry

The new SOC4Kafka connector, built on OpenTelemetry, enables the collection of Kafka messages and forwards ...