← Back to SOC feed Coverage →

Crash dump disabled on host (ASIM Version)

kql MEDIUM Azure-Sentinel
T1070
imRegistry
huntingmicrosoftofficial
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at Azure-Sentinel →
Retrieved: 2026-04-22T09:00:00Z · Confidence: medium

Hunt Hypothesis

Adversaries may disable crash dumps to prevent malware from generating diagnostic data that could expose their presence. SOC teams should proactively hunt for this behavior in Azure Sentinel to identify potential malware activity that is actively suppressing forensic evidence.

KQL Query

imRegistry
| where RegistryKey == "HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control\\CrashControl"
| where RegistryValue == "CrashDumpEnabled"
| where RegistryValueData == 0
| project-reorder TimeGenerated, RegistryKey, RegistryValue, RegistryValueData, Process, User, ParentProcessName

Analytic Rule Definition

id: 6cb193f3-7c6d-4b53-9153-49a09be830d7
name: Crash dump disabled on host (ASIM Version)
description: |
  'This detection looks the prevention of crash dumps being created. This can be used to limit reporting by malware, look for suspicious processes setting this registry key.'
requiredDataConnectors: []
tactics:
  - DefenseEvasion
relevantTechniques:
  - T1070
query: |
    imRegistry
    | where RegistryKey == "HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control\\CrashControl"
    | where RegistryValue == "CrashDumpEnabled"
    | where RegistryValueData == 0
    | project-reorder TimeGenerated, RegistryKey, RegistryValue, RegistryValueData, Process, User, ParentProcessName
entityMappings:
  - entityType: Account
    fieldMappings:
      - identifier: FullName
        columnName: User
  - entityType: Host
    fieldMappings:
      - identifier: FullName
        columnName: DvcHostname
version: 1.0.0
metadata:
    source:
        kind: Community
    author:
        name: Pete Bryan
    support:
        tier: Community
    categories:
        domains: [ "Security - Threat Protection" ]

Required Data Sources

Sentinel TableNotes
imRegistryEnsure this data connector is enabled

MITRE ATT&CK Context

References

False Positive Guidance

Original source: https://github.com/Azure/Azure-Sentinel/blob/main/Hunting Queries/ASimRegistry/Crashdumpdisabledonhost(ASIMVersion).yaml