Splunk Search

Stats issue with multivalue field

mbasharat
Builder

Hi,

I am tracking my assets with vulnerabilities. My minimized sample query is:

index=vuln
| stats dc(dns) as impacted_asset_count by Vuln_ID, CVE

When stats populate, it shows that one vulnerability is affecting multiple assets and several Vuln_IDs have multiple CVEs.

Sample:

alt text

As you notice, there are multiple CVEs in some Vuln IDs. I need to have CVEs seperated/expanded/extracted as they are multivalue field and then have correct stats. Each CVE is impacting more than one assets so, I need it like this:

alt text

Thanks in-advance!!!

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

mbasharat
Builder

I ended up using:

| makemv delim="," cve
| mvexpand cve

View solution in original post

0 Karma

mbasharat
Builder

I ended up using:

| makemv delim="," cve
| mvexpand cve

0 Karma

to4kawa
Ultra Champion
index=vuln
| stats dc(dns) as impacted_asset_count values(Vuln_ID) as Vuln_ID by CVE

This is better.
by extracts multi values

0 Karma

mbasharat
Builder

Hi @ to4kawa

This does not do it because cve is a multivalue field. AT minimum, it has one CVE and there are several vuln ids which have more than one CVE as shown in first screenshot. cves need to be extracted using regex or eval and then do stats will do it looks like. I will need regex or eval pls.

0 Karma

to4kawa
Ultra Champion

I see, my answer is updated

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...