Detection rules › Kusto

Claroty - Asset Down

Status
available
Severity
high
Time window
1h
Source
github.com/Azure/Azure-Sentinel

'Triggers asset is down.'

MITRE ATT&CK coverage

TacticTechniques
ImpactT1529 System Shutdown/Reboot

Rule body kusto

id: fd6e3416-0421-4166-adb9-186e555a7008
name: Claroty - Asset Down
description: |
  'Triggers asset is down.'
severity: High
status: Available
requiredDataConnectors:
  - connectorId: CefAma
    dataTypes:
      - CommonSecurityLog
queryFrequency: 1h
queryPeriod: 1h
triggerOperator: gt
triggerThreshold: 0
tactics:
  - Impact
relevantTechniques:
  - T1529
query: |
  ClarotyEvent
  | where EventOriginalType has 'Asset Down' or EventType has 'Asset Down'
  | project TimeGenerated, DstIpAddr
  | extend IPCustomEntity = DstIpAddr
entityMappings:
  - entityType: IP
    fieldMappings:
      - identifier: Address
        columnName: IPCustomEntity
version: 1.0.3
kind: Scheduled

Stages and Predicates

Stage 1: source

ClarotyEvent

Stage 2: where

| where EventOriginalType has 'Asset Down' or EventType has 'Asset Down'

Stage 3: project

| project TimeGenerated, DstIpAddr

Stage 4: extend

| extend IPCustomEntity = DstIpAddr

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
EventOriginalTypematch
  • Asset Down transforms: term
EventTypematch
  • Asset Down transforms: term

Output fields

Fields the rule emits when it matches. Chronicle authors list these in the outcome block; they appear on the detection and $risk_score drives alerting. Sentinel / Defender XDR rules build them up through project / summarize / extend stages. Sentinel maps these into alert fields via entityMappings and customDetails; Defender XDR custom detections surface them as alert fields directly.

FieldSource
DstIpAddrproject
TimeGeneratedproject
IPCustomEntityextend