Ransomware hits healthcare - Alternate Data Streams use
Description
Find use of Alternate Data Streams (ADS) for anti-forensic purposes. Alternate Data Streams execution.
Query · kql
DeviceProcessEvents
| where Timestamp > ago(7d)
// Command lines used
| where ProcessCommandLine startswith "-q -s" and ProcessCommandLine has "-p"
// Removing IDE processes
and not(FolderPath has_any("visual studio", "ide"))
| summarize make_set(ProcessCommandLine), make_set(FolderPath),
make_set(InitiatingProcessCommandLine) by DeviceId, bin(Timestamp, 1h)