1
0
Форкнуть 0

Update CVE-2021-36934 usage detection.md

This commit is contained in:
tali-ash 2022-01-16 17:06:27 +02:00 коммит произвёл GitHub
Родитель f8929e93ba
Коммит 824d453d6f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -14,11 +14,15 @@
let startTime = now(-7d);
let endTime = now();
DeviceProcessEvents
| where Timestamp between (startTime..endTime)
| where ProcessCommandLine contains "HKLM"
| where AccountName != "system"
#This query just looks for usage of "reg" in processes that aren't ran by system.
let startTime = now(-7d);
let endTime = now();
DeviceProcessEvents
| where Timestamp between (startTime..endTime)
| where ProcessCommandLine contains "reg"
| where AccountName != "system"