1
0
Форкнуть 0
This commit is contained in:
Michael Melone 2021-05-19 13:47:03 -04:00 коммит произвёл GitHub
Родитель b449e42683
Коммит beb39525b2
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 24 добавлений и 0 удалений

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

@ -47,6 +47,30 @@ union (
) on SHA256
)
```
...or if you don't care about the details from Malware Bazaar you might consider this slightly more lightweight version
```
let MaxAge = ago(1d);
let AbuseFeed = toscalar (
(externaldata(report:string)
[@"https://bazaar.abuse.ch/export/txt/sha256/recent/"]
with (format = "txt"))
| where report !startswith '#'
| summarize make_set(report)
);
union (
DeviceProcessEvents
| where Timestamp > MaxAge and SHA256 in (AbuseFeed)
), (
DeviceFileEvents
| where Timestamp > MaxAge and SHA256 in (AbuseFeed)
), (
DeviceImageLoadEvents
| where Timestamp > MaxAge and SHA256 in (AbuseFeed)
)
```
## Category
This query can be used to detect the following attack techniques and tactics ([see MITRE ATT&CK framework](https://attack.mitre.org/)) or security configuration states.
| Technique, tactic, or state | Covered? (v=yes) | Notes |