Detection rules › Kusto
SailPointIdentityNowEventType
'Created to detect failed events of particular type from SailPointIDN_Events.'
MITRE ATT&CK coverage
| Tactic | Techniques |
|---|---|
| Initial Access |
Rule body
id: 48bb92e2-bad4-4fd4-9684-26cb188299b7
name: SailPointIdentityNowEventType
description: |
'Created to detect failed events of particular type from SailPointIDN_Events.'
severity: High
status: Available
requiredDataConnectors:
- connectorId: SailPointIdentityNow
dataTypes:
- SailPointIDN_Events
- connectorId: SailPointIdentityNowConnector
dataTypes:
- SailPointIDN_Events
queryFrequency: 1d
queryPeriod: 14d
triggerOperator: gt
triggerThreshold: 0
tactics:
- InitialAccess
relevantTechniques:
- T1133
query: |
declare query_parameters(lbperiod:timespan = 14d, type:string = "ACCESS_ITEM");
SailPointIDN_Events
| where TimeGenerated > ago(lbperiod)
| where EventType == type
| where Status == "FAILED"
| sort by Created
entityMappings:
- entityType: Account
fieldMappings:
- identifier: Name
columnName: TechnicalName
version: 1.1.0
kind: Scheduled
Stages and Predicates
Stage 1: source
declare query_parameters(lbperiod:timespan = 14d, type:string = "ACCESS_ITEM");
SailPointIDN_Events
Stage 2: where
| where TimeGenerated > ago(lbperiod)
Stage 3: where
| where EventType == type
Stage 4: where
| where Status == "FAILED"
Stage 5: sort
| sort by Created
Indicators
These rows show field, operator, and value matches.
| Field | Kind | Values | Search |
|---|---|---|---|
EventType | cross_field_compare |
| field:"EventType" kind:cross_field_compare value:"type" |
Status | eq |
| field:"Status" kind:eq value:"FAILED" |