Update Sign-in Burst from Multiple Locations.yaml

This commit is contained in:
ehudk-msft 2020-11-04 11:36:51 +02:00 коммит произвёл GitHub
Родитель 295f79f41b
Коммит 178c303985
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -16,11 +16,11 @@ tactics:
relevantTechniques:
- T1110
query: |
let RunTime = 1h;
let RunTime = 1h;
SigninLogs
| where TimeGenerated > ago(RunTime)
| where AppDisplayName == "GitHub.com"
| where ResultType == 0
| summarize CountOfLocations = dcount(Location), Locations = make_set(Location) by UserPrincipalName
| summarize CountOfLocations = dcount(Location), Locations = make_set(Location), BurstStartTime = min(TimeGenerated), BurstEndTime = max(TimeGenerated) by UserPrincipalName
| where CountOfLocations > 1
| extend AccountCustomEntity = UserPrincipalName , timestamp = TimeGenerated
| extend AccountCustomEntity = UserPrincipalName