Query Details
Tags: Query: DeviceProcessEvents | where FileName == "rundll32.exe" or ProcessVersionInfoOriginalFileName == @"RUNDLL32.EXE"| where ProcessCommandLine matches regex "^$" References: Notes:
Sure! Here's a simple summary of the provided KQL (Kusto Query Language) query:
Data Source: The query is looking at DeviceProcessEvents, which is a table containing events related to processes on devices.
File Name Filter: It filters the events to include only those where the FileName is "rundll32.exe" or the ProcessVersionInfoOriginalFileName is "RUNDLL32.EXE".
Command Line Filter: It further filters these events to include only those where the ProcessCommandLine is empty (matches the regex pattern "^$", which represents an empty string).
In summary, this query retrieves events where the process is "rundll32.exe" and the command line used to start the process is empty.

Ali Hussein
Released: October 3, 2023
Tables
Keywords
Operators