This commit is contained in:
Pete Bryan 2021-03-05 18:45:46 -08:00
Родитель 086d2717c9
Коммит 939eb458fc
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -31,7 +31,7 @@ requiredDataConnectors:
- connectorId: SecurityEvents
dataTypes:
- SecurityEvents
- connectorId: WindowsFireWall
- connectorId: WindowsFirewall
dataTypes:
- WindowsFirewall
queryFrequency: 1h
@ -74,7 +74,7 @@ query: |
| extend Hashes = EventDetail.[16].["#text"]
| where isnotempty(Hashes)
| parse Hashes with * 'SHA256=' SHA256 ',' *
| where SHA256 in~ (SHA256Hash)
| where SHA256 in~ (sha256s)
| extend Type = strcat(Type, ": ", Source), Account = UserName, FileHash = Hashes
| extend timestamp = TimeGenerated, AccountCustomEntity = Account, HostCustomEntity = Computer
),