Dashboards & Visualizations

How to display CVE as a number not all the CVE's listed

rkaakaty
Path Finder

My CVE field is being displayed like this:

alt text

I want it to be displayed by the number of CVE's and not each one.

Here is my code:

index=nessus cve=*
| eval CVSS_SCORE = cvss_base_score + cvss_temporal_score
| eval description=substr(description,1,100)
| eval solution=substr(solution,1,100)
| rename id as ID, cve as CVE, plugin_name as Plugin_Name, description as Description, solution as Solution
| table ID, Plugin_Name, Description, Solution, CVSS_SCORE, CVE
| sort - CVSS_SCORE

Tags (1)
0 Karma
1 Solution

somesoni2
Revered Legend

Try this

index=nessus cve=*
| eval CVSS_SCORE = cvss_base_score + cvss_temporal_score
| eval description=substr(description,1,100)
| eval solution=substr(solution,1,100)
| eval CVE=mvcount(cve)
| rename id as ID, plugin_name as Plugin_Name, description as Description, solution as Solution
| table ID, Plugin_Name, Description, Solution, CVSS_SCORE, CVE
| sort - CVSS_SCORE

View solution in original post

somesoni2
Revered Legend

Try this

index=nessus cve=*
| eval CVSS_SCORE = cvss_base_score + cvss_temporal_score
| eval description=substr(description,1,100)
| eval solution=substr(solution,1,100)
| eval CVE=mvcount(cve)
| rename id as ID, plugin_name as Plugin_Name, description as Description, solution as Solution
| table ID, Plugin_Name, Description, Solution, CVSS_SCORE, CVE
| sort - CVSS_SCORE

rkaakaty
Path Finder

Thank you!

0 Karma
Get Updates on the Splunk Community!

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Wondering How to Build Resiliency in the Cloud?

IT leaders are choosing Splunk Cloud as an ideal cloud transformation platform to drive business resilience,  ...

Updated Data Management and AWS GDI Inventory in Splunk Observability

We’re making some changes to Data Management and Infrastructure Inventory for AWS. The Data Management page, ...