Sponsored by Hudson Rock – Use Hudson Rock's free cybercrime intelligence tools to learn how Infostealer infections are leading to ransomware attacks
DeviceFileEventslet vboxInstall = DeviceFileEvents
| where Timestamp > ago(1d)
| where FileName in~ ("vboxheadless.exe","virtualbox.exe","vboxmanage.exe")
| project DeviceName, InstallTime = Timestamp, FileName;
let vboxRun = DeviceProcessEvents
| where Timestamp > ago(1d)
| where FileName in~ ("vboxheadless.exe","vboxmanage.exe")
| project DeviceName, RunTime = Timestamp;
vboxInstall
| join kind=inner vboxRun on DeviceName
| where RunTime - InstallTime between (0min .. 6h)
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.