RunMRU with non-ASCII characters
Description
Identifies non-ASCII data written to the RunMRU registry key by explorer.
Query · kql
//Identifies non-ASCII data written to the RunMRU registry key by explorer. This may indicate user-pasted commands from social engineering tactics like "ClickFix", where users are tricked into executing code. DeviceRegistryEvents | where InitiatingProcessFileName == "explorer.exe" | where ActionType == "RegistryValueSet" | where RegistryKey endswith "RunMRU" | where RegistryValueData matches regex "[^[:ascii]]" // If too noisy add the following filter // | where RegistryValueData contains "#"