Does anybody know how to get the list of CVS affecting a particular Node to show up, Node details page?
This is mainly for servers, seems to work fine for network devices.
Code view may mangle this, but I added a Custom Query, title 'CVE Score', subtitle '${Caption}' and the following query.SELECT TOP 15 r.CveId as [CVE] , r.Score , r.Severity , r.Description , r.CveLink as [_linkfor_CVE] FROM Orion.SecObs.Vulnerabilities.LastMatching.Result r INNER JOIN orion.nodes n on n.NodeID = r.NodeId where r.NodeId = ${NodeID} AND r.State = 0 ORDER BY r.Score DESC
SELECT TOP 15 r.CveId as [CVE] , r.Score , r.Severity , r.Description , r.CveLink as [_linkfor_CVE] FROM Orion.SecObs.Vulnerabilities.LastMatching.Result r INNER JOIN orion.nodes n on n.NodeID = r.NodeId where r.NodeId = ${NodeID} AND r.State = 0 ORDER BY r.Score DESC
Brilliant. Perfect. Thank you.