Sponsored by Hudson Rock – Use Hudson Rock's free cybercrime intelligence tools to learn how Infostealer infections are leading to ransomware attacks
DeviceProcessEventslet chiselRun = DeviceProcessEvents
| where Timestamp > ago(1d)
| where FileName has "chisel" or ProcessCommandLine has_any ("chisel client", "chisel server")
| project DeviceName, ChiselTime = Timestamp;
let rmmInstall = DeviceProcessEvents
| where Timestamp > ago(1d)
| where FileName has_any ("superops", "splashtop_streamer.exe", "srserver.exe")
| project DeviceName, RmmTime = Timestamp, RmmFile = FileName;
chiselRun
| join kind=inner rmmInstall on DeviceName
| where RmmTime - ChiselTime between (-2h .. 2h)
| project DeviceName, ChiselTime, RmmTime, RmmFile
Hunting queries are starting points for threat hunting & detection engineering — validate table/column names against your own workspace schema and tune thresholds before turning any of these into a production alert rule.