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!

Enter the Splunk Community Dashboard Challenge for Your Chance to Win!

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

.conf24 | Session Scheduler is Live!!

.conf24 is happening June 11 - 14 in Las Vegas, and we are thrilled to announce that the conference catalog ...

Introducing the Splunk Community Dashboard Challenge!

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