Detection rules › Kusto
Device Alert Surge
This is a third-party alert feed, not a detection over modeled telemetry. The vendor product raised the finding; this rule forwards it into the SIEM. It is searchable for reference but is excluded from the detection-rule browse and the ATT&CK coverage matrix.
'Triggers an incident when a device generates 5 or more Medium or High severity alerts, indicating potential compromise.'
MITRE ATT&CK coverage
| Tactic | Techniques |
|---|---|
| Execution | T1059 Command and Scripting Interpreter, T1204 User Execution |
Rule body kusto
id: 5c8e1f2e-9d6b-4f4a-8f3e-123456789abc
name: Device Alert Surge
description: |
'Triggers an incident when a device generates 5 or more Medium or High severity alerts, indicating potential compromise.'
severity: High
status: Available
requiredDataConnectors:
- connectorId: MorphisecCCF
dataTypes:
- Morphisec
queryFrequency: 1h
queryPeriod: 1h
triggerOperator: gt
triggerThreshold: 0
suppressionDuration: 5h
suppressionEnabled: false
tactics:
- Execution
- DefenseEvasion
relevantTechniques:
- T1059
- T1204
query: |
MorphisecAlerts_CL
| where threatMessageArrivalTime >= ago(1h)
| where attackSeverity in ("HIGH", "MEDIUM")
| summarize arg_max(threatMessageArrivalTime, *) by id
| summarize AlertCount = dcount(id) by hostname
| where AlertCount >= 5
entityMappings:
- entityType: Host
fieldMappings:
- identifier: HostName
columnName: hostname
eventGroupingSettings:
aggregationKind: SingleAlert
incidentConfiguration:
createIncident: true
groupingConfiguration:
enabled: false
reopenClosedIncident: false
lookbackDuration: 1h
matchingMethod: AllEntities
groupByEntities:
- Host
groupByAlertDetails:
- DisplayName
alertDetailsOverride:
alertDisplayNameFormat: "Device alert surge detected: {{hostname}}"
alertDescriptionFormat: "Device {{hostname}} triggered {{AlertCount}} distinct High/Medium alerts within the last hour."
version: 1.0.0
kind: Scheduled
Stages and Predicates
Stage 1: source
MorphisecAlerts_CL
Stage 2: where
| where threatMessageArrivalTime >= ago(1h)
Stage 3: where
| where attackSeverity in ("HIGH", "MEDIUM")
Stage 4: summarize
| summarize arg_max(threatMessageArrivalTime, *) by id
Stage 5: summarize
| summarize AlertCount = dcount(id) by hostname
Stage 6: where
| where AlertCount >= 5
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 |
|---|---|---|
AlertCount | ge |
|
attackSeverity | in |
|
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 |
|---|---|
AlertCount | summarize |
hostname | summarize |