Suspicious Removal of Backup Files (via file_delete)

This rule detects deletion of files with extensions frequently used for backup files. Threat actors may delete or remove built-in operating system data and turn off services designed to aid in the recovery of a corrupted system to prevent recovery.

SigmamediumWindowsv1
sigma
title: Suspicious Removal of Backup Files (via file_delete)
id: a9915917-7764-5656-9b56-26fe2e39a77b
status: stable
description: This rule detects deletion of files with extensions frequently used for backup files. Threat actors may delete or remove built-in operating system data and turn off services designed to aid in the recovery of a corrupted system to prevent recovery.
references:
    - https://attack.mitre.org/techniques/T1490/
    - https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1490/T1490.md#atomic-test-6---windows---delete-backup-files
author: Huntrule Team
date: 2026-02-27
tags:
    - attack.impact
    - attack.t1490
logsource:
    product: windows
    category: file_delete
detection:
    selection:
        Image|endswith:
            - '\cmd.exe'
            - '\powershell.exe'
            - '\pwsh.exe'
            - '\wt.exe'
            - '\rundll32.exe'
            - '\regsvr32.exe'
        TargetFilename|endswith:
            - '.VHD'
            - '.bac'
            - '.bak'
            - '.wbcat'
            - '.bkf'
            - '.set'
            - '.win'
            - '.dsk'
    condition: selection
falsepositives:
    - Unknown
level: medium

Known false positives

  • Unknown

Detection content is published as a reviewed draft. Tune thresholds and exclusions against your own telemetry before enabling this rule for alerting.