Forum Discussion
mathurin68
Dec 15, 2021Brass Contributor
KQL for Public Facing CVE-2021-44228 Hosts
We came up with the following KQL but are still learning could someone double check our work? DeviceTvmSoftwareVulnerabilities
| where CveId == 'CVE-2021-44228'
| project DeviceId, DeviceNam...
mathurin68
Dec 16, 2021Brass Contributor
For whatever reason this doesn't seem to work in ours... BUT many, many thanks for the effort!
AnuragSrivastava
Dec 17, 2021Iron Contributor
Missed one parameter, please try the below
DeviceTvmSoftwareVulnerabilities
| where CveId in ("CVE-2021-44228")
| join kind = inner(DeviceEvents
| distinct LocalIP, DeviceName, DeviceId)
on $left.DeviceId == $right.DeviceId
| distinct DeviceName, LocalIP
DeviceTvmSoftwareVulnerabilities
| where CveId in ("CVE-2021-44228")
| join kind = inner(DeviceEvents
| distinct LocalIP, DeviceName, DeviceId)
on $left.DeviceId == $right.DeviceId
| distinct DeviceName, LocalIP