Update Sign-in Burst from Multiple Locations.yaml

Fixing first line in query to resolve yaml file validation issue, then will see if this resolves KQL validation issue, also adding in required timestamp entity mapping field.
This commit is contained in:
Shain 2020-11-12 21:36:56 -08:00 коммит произвёл GitHub
Родитель 46f9e2f48c
Коммит a05f842898
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 2 удалений

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

@ -16,6 +16,7 @@ tactics:
relevantTechniques:
- T1110
query: |
let RunTime = 1h;
SigninLogs
| where TimeGenerated > ago(RunTime)
@ -23,4 +24,4 @@ query: |
| where ResultType == 0
| summarize CountOfLocations = dcount(Location), Locations = make_set(Location), BurstStartTime = min(TimeGenerated), BurstEndTime = max(TimeGenerated) by UserPrincipalName
| where CountOfLocations > 1
| extend AccountCustomEntity = UserPrincipalName
| extend timestamp = BurstStartTime, AccountCustomEntity = UserPrincipalName