Hi all,
has anyone tried to create a dashboard based on an defender XDR advanced hunting query?
I have this query that i wan’t to create some kind of view of on a dashboard. I know i need to do some tweeking on the query in Squaredup:
DeviceTvmSoftwareVulnerabilities
| where VulnerabilitySeverityLevel == “Critical”
| summarize
DeviceCount = dcount(DeviceName),
Devices = make_set(DeviceName)
by CveId
| join kind=leftouter (
DeviceTvmSoftwareVulnerabilitiesKB
| project CveId, CvssScore = todouble(CvssScore),
CvssVector = VulnerabilityDescription, // or specific field for vector if available
ExploitAvailable = IsExploitAvailable,
PublishedDate
) on CveId
| order by CvssScore desc, DeviceCount desc
But i can’t seem to get any result at all, not even by just running
DeviceTvmSoftwareVulnerabilities
I have tried to run the kql both in loganalytics and resource graph, but i still don’t get any result, but in advanced hunting in the security portal i do.
I am pretty sure the data i am quering is sentinel data stored in loganalytics.
Any suggestions or advice
Regards Jan L Dam