Detection rules › Kusto
NGINX - Core Dump
'Detects a core dump of a crashing Nginx worker process, which could be a signal of a serious problem or exploitation attempts.'
MITRE ATT&CK coverage
| Tactic | Techniques |
|---|---|
| Impact | T1499 Endpoint Denial of Service |
Rule body kusto
id: 9a7f5a97-354b-4eac-b407-a1cc7fc4b4ec
name: NGINX - Core Dump
description: |
'Detects a core dump of a crashing Nginx worker process, which could be a signal of a serious problem or exploitation attempts.'
severity: High
status: Available
requiredDataConnectors:
- connectorId: CustomLogsAma
dataTypes:
- NGINX_CL
queryFrequency: 10m
queryPeriod: 10m
triggerOperator: gt
triggerThreshold: 0
tactics:
- Impact
relevantTechniques:
- T1499
query: |
NGINXHTTPServer
| where EventType =~ "ErrorLog"
| where EventMessage contains 'exited on signal 6 (core dumped)'
| extend ProcessIdCustomEntity = ProcessId
entityMappings:
- entityType: Process
fieldMappings:
- identifier: ProcessId
columnName: ProcessIdCustomEntity
version: 1.0.3
kind: Scheduled
Stages and Predicates
Stage 1: source
NGINXHTTPServer
Stage 2: where
| where EventType =~ "ErrorLog"
Stage 3: where
| where EventMessage contains 'exited on signal 6 (core dumped)'
Stage 4: extend
| extend ProcessIdCustomEntity = ProcessId
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 |
|---|---|---|
EventMessage | contains |
|
EventType | 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 |
|---|---|
ProcessIdCustomEntity | extend |