Detection rules › Kusto
CiscoISE - Log collector was suspended
'Detects when log collector was suspended.'
MITRE ATT&CK coverage
| Tactic | Techniques |
|---|---|
| Stealth | T1562.002 Impair Defenses: Disable Windows Event Logging |
Rule body kusto
id: ce171782-1643-4f21-bbb7-fa954b1e6897
name: CiscoISE - Log collector was suspended
description: |
'Detects when log collector was suspended.'
severity: Medium
status: Available
requiredDataConnectors:
- connectorId: SyslogAma
datatypes:
- Syslog
queryFrequency: 10m
queryPeriod: 10m
triggerOperator: gt
triggerThreshold: 0
tactics:
- DefenseEvasion
relevantTechniques:
- T1562.002
query: |
let lbtime = 10m;
CiscoISEEvent
| where TimeGenerated > ago(lbtime)
| where EventId == '59207'
| project TimeGenerated, SrcIpAddr, DstIpAddr
| extend IPCustomEntity = DstIpAddr
entityMappings:
- entityType: IP
fieldMappings:
- identifier: Address
columnName: IPCustomEntity
version: 1.0.3
kind: Scheduled
Stages and Predicates
Parameters
let lbtime = 10m;
Stage 1: source
CiscoISEEvent
Stage 2: where
| where TimeGenerated > ago(lbtime)
Stage 3: where
| where EventId == '59207'
Stage 4: project
| project TimeGenerated, SrcIpAddr, DstIpAddr
Stage 5: 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.
| Field | Kind | Values |
|---|---|---|
EventId | eq |
|
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.
| Field | Source |
|---|---|
DstIpAddr | project |
SrcIpAddr | project |
TimeGenerated | project |
IPCustomEntity | extend |