devices_with_vuln_and_users_received_payload (1)
Description
// Author: jan geisbauer // @janvonkirchheim // ------------------------ // 1. A list of all devices that have this vulnerability // 2. A list of all users that uses those devices // 3. If these users received .mkv files recently
Query · kql
// 1. A list of all devices that have this vulnerability // 2. A list of all users that uses those devices // If these users opened those .mkv files let all_computers_with_vlcvln= DeviceTvmSoftwareVulnerabilities | where SoftwareName contains "vlc" | summarize makelist(DeviceName); DeviceFileEvents | where DeviceName in (all_computers_with_vlcvln) | where FileName contains "mkv"