This commit is contained in:
ehudk-msft 2020-10-31 01:05:26 +02:00 коммит произвёл GitHub
Родитель 2fd7219aec
Коммит 5977a7a149
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -22,7 +22,7 @@ query: |
let FailedEvents = Okta_CL
| where TimeGenerated > timeframe
| where eventType_s =~ "user.session.start"and outcome_reason_s in ("VERIFICATION_ERROR","INVALID_CREDENTIALS")
| summarizedcount(actor_alternateId_s) by client_ipAddress_s, bin(TimeGenerated, 5m)
| summarize dcount(actor_alternateId_s) by client_ipAddress_s, bin(TimeGenerated, 5m)
| where dcount_actor_alternateId_s > FailureThreshold
| project client_ipAddress_s, TimeGenerated;
Okta_CL