File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -99,17 +99,19 @@ This query will return all vulnerabilities (CVEs) reported by Rapid7 on ingested
99
99
100
100
``` kusto
101
101
ExposureGraphEdges
102
- | where EdgeLabel == "affecting"
103
- | where tostring(EdgeProperties.rawData.reportInfo.reportedBy) == "rapid7"
102
+ | where EdgeLabel == "affecting"
103
+ | where SourceNodeLabel == "Cve"
104
+ | where isnotempty(EdgeProperties.rawData.rapid7ReportInfo)
104
105
| project AssetName = TargetNodeName, CVE = SourceNodeName
105
106
```
106
107
107
108
This query will return all vulnerabilities (CVEs) reported by Tenable on ingested assets.
108
109
109
110
``` kusto
110
111
ExposureGraphEdges
111
- | where EdgeLabel == "affecting"
112
- | where tostring(EdgeProperties.rawData.reportInfo.reportedBy) == "tenable"
112
+ | where EdgeLabel == "affecting"
113
+ | where SourceNodeLabel == "Cve"
114
+ | where isnotempty(EdgeProperties.rawData.tenableReportInfo)
113
115
| project AssetName = TargetNodeName, CVE = SourceNodeName
114
116
```
115
117
You can’t perform that action at this time.
0 commit comments