Detection rules › Kusto

SailPointIdentityNowFailedEvents

Status
available
Severity
high
Time window
14d
Source
github.com/Azure/Azure-Sentinel

'Detects all events with status failed.'

MITRE ATT&CK coverage

TacticTechniques
Initial Access

Rule body

id: c3835197-fd07-447e-a0ac-7540d51a1f64
name: SailPointIdentityNowFailedEvents
description: |
  'Detects all events with status failed.'
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);
    SailPointIDN_Events
    | where TimeGenerated > ago(lbperiod) and Status == "FAILED"
    | project TechnicalName, Operation, EventType
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);
  SailPointIDN_Events

Stage 2: where

| where TimeGenerated > ago(lbperiod) and Status == "FAILED"

Stage 3: project

| project TechnicalName, Operation, EventType

Indicators

These rows show field, operator, and value matches.

FieldKindValuesSearch
Statuseq
  • FAILED
field:"Status" kind:eq value:"FAILED"

Output fields

These fields are emitted when the rule matches.

FieldSource
EventTypeproject
Operationproject
TechnicalNameproject