Detection rules › Kusto

SailPointIdentityNowUserWithFailedEvent

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

'Detects any failed event for a particular user.'

MITRE ATT&CK coverage

TacticTechniques
Initial AccessT1133 External Remote Services

Rule body kusto

id: 2a215222-bfc5-4858-a530-6d4088ebfa15
name: SailPointIdentityNowUserWithFailedEvent
description: |
  'Detects any failed event for a particular user.'
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", actorName:string = "test.tester", targetName:string = "test.tester");
    SailPointIDN_Events
    | where TimeGenerated > ago(lbperiod)
    | where EventType == type
    | where Status == "FAILED"
    | where ActorName == actorName
    | where TargetName == targetName
    | 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", actorName:string = "test.tester", targetName:string = "test.tester");
  SailPointIDN_Events

Stage 2: where

| where TimeGenerated > ago(lbperiod)

Stage 3: where

| where EventType == type

Stage 4: where

| where Status == "FAILED"

Stage 5: where

| where ActorName == actorName

Stage 6: where

| where TargetName == targetName

Stage 7: sort

| sort by Created

Indicators

Each row is a field, operator, and value that the rule matches. The corpus column counts how many other rules in the catalog look for the same combination: high numbers point to widely-used, community-vetted indicators. Blank or 1 shows that the indicator is specific to this rule.

FieldKindValues
ActorNameeq
  • actorName transforms: cased
EventTypeeq
  • type transforms: cased
Statuseq
  • FAILED transforms: cased
TargetNameeq
  • targetName transforms: cased