Splunk Enterprise Security

In Splunk Enterprise Security, why is "weight" field missing in the Threat Intelligence datamodel?

marand
Explorer

The datamodel for Threat Intelligence is missing the weight field.

This breaks the built in Threat Activity Detected notable, that is based on the datamodel.

This renders the following lines without value in the correlation search

| eval risk_score=case(isnum(record_weight), record_weight, isnum(weight), weight, 1=1, null())

The workaround is either:

  • Not using the datamodel

  • Add the field in the datamodel

I don't think this has been a problem before, so I suspect the 7.x+ is broken in this regard.

Anyone that has any insight into this?

/Marc

0 Karma

jeff
Contributor

I'm looking at this too. As of ES 6.4.1 this is still seemingly the case.

Adding this immediately after the datamodel command in the correlation search extracts the weight field:

| rex field=_raw "weight=\"?(?<wt>[^\s,\"]+)" 
| eval weight=coalesce(weight,wt)

 

0 Karma
Get Updates on the Splunk Community!

Get Your Exclusive Splunk Certified Cybersecurity Defense Engineer at Splunk .conf24 ...

We’re excited to announce a new Splunk certification exam being released at .conf24! If you’re headed to Vegas ...

Share Your Ideas & Meet the Lantern team at .Conf! Plus All of This Month’s New ...

Splunk Lantern is Splunk’s customer success center that provides advice from Splunk experts on valuable data ...

Combine Multiline Logs into a Single Event with SOCK: a Step-by-Step Guide for ...

Combine multiline logs into a single event with SOCK - a step-by-step guide for newbies Olga Malita The ...