- Access exclusive content
- Connect with peers
- Share your expertise
- Find support resources
03-31-2025 04:52 PM
Hello sirs,
Any tip how can I get this same Dashboard info but excluding "Servers" and show only the vulnerabilities for Workstation over the last 30 days ?
(this one represents All Endpoints)
04-02-2025 08:50 AM
Hello @3SCMAN ,
This is something which is backend created and may not be possible as va_cves dataset has modification date and publication date. Both the filed will be irrelevant, as we you are looking for vulnerabilities on all endpoints over time.
If you run below query, you will find the exact result count, however you cannot turn it into graph, as dataset don't store the count of each day or hour. If we go with Modification date, it changes every day.
dataset = va_cves
| arrayexpand affected_hosts
| join (
dataset = endpoints
// | filter endpoint_type = ENUM.TYPE_WORKSTATION
| fields endpoint_name
) as ep ep.endpoint_name = affected_hosts
If you feel this has answered your query, please let us know by clicking like and on "mark this as a Solution". Thank you.
04-02-2025 08:50 AM
Hello @3SCMAN ,
This is something which is backend created and may not be possible as va_cves dataset has modification date and publication date. Both the filed will be irrelevant, as we you are looking for vulnerabilities on all endpoints over time.
If you run below query, you will find the exact result count, however you cannot turn it into graph, as dataset don't store the count of each day or hour. If we go with Modification date, it changes every day.
dataset = va_cves
| arrayexpand affected_hosts
| join (
dataset = endpoints
// | filter endpoint_type = ENUM.TYPE_WORKSTATION
| fields endpoint_name
) as ep ep.endpoint_name = affected_hosts
If you feel this has answered your query, please let us know by clicking like and on "mark this as a Solution". Thank you.
Click Accept as Solution to acknowledge that the answer to your question has been provided.
The button appears next to the replies on topics you’ve started. The member who gave the solution and all future visitors to this topic will appreciate it!
These simple actions take just seconds of your time, but go a long way in showing appreciation for community members and the LIVEcommunity as a whole!
The LIVEcommunity thanks you for your participation!