DeviceProcessEvents
| where Timestamp > ago(1d)
| where ProcessCommandLine has_any (
"VirtualAllocEx", "WriteProcessMemory", "CreateRemoteThread",
"NtMapViewOfSection", "QueueUserAPC", "SetThreadContext",
"ReflectiveLoader", "-inject", "hollowing"
)
| where FileName !in~ ("MsMpEng.exe", "svchost.exe")
| project Timestamp, DeviceName, AccountName, FileName, ProcessCommandLine, InitiatingProcessFileName, SHA256
| sort by Timestamp desc