← Back to SOC feed Coverage →

Registry Hive File Staged Outside Standard User Profile Path

sigma HIGH SigmaHQ
T1548T1003
imFileEvent
credential-theftpersistence
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 SigmaHQ →
Retrieved: 2026-08-11T11:00:00Z · Confidence: low

Hunt Hypothesis

Detects the creation of a registry hive file (UsrClass.dat or NTUSER.DAT) outside of the standard user profile path. These files generally contain various user-specific registry settings and are typic

Detection Rule

Sigma (Original)

title: Registry Hive File Staged Outside Standard User Profile Path
id: a7f3c891-2e4d-4b6a-9f8c-d5e2a1b04c73
status: experimental
description: |
    Detects the creation of a registry hive file (UsrClass.dat or NTUSER.DAT) outside of the standard user profile path.
    These files generally contain various user-specific registry settings and are typically located in the user's profile directory.
    Staging these files outside of the standard path can be indicative of an attacker attempting to manipulate user registry settings
    for persistence, privilege escalation, or dump user registry hives for credential harvesting.
references:
    - https://github.com/MSNightmare/LegacyHive
    - https://git.projectnightcrawler.dev/NightmareEclipse/LegacyHive
author: Swachchhanda Shrawan Poudel (Nextron Systems)
date: 2026-07-23
tags:
    - attack.privilege-escalation
    - attack.t1548
    - attack.credential-access
    - attack.t1003
logsource:
    category: file_event
    product: windows
detection:
    selection:
        TargetFilename|endswith:
            - '\UsrClass.dat'
            - '\NTUSER.DAT'
    filter_main_usrclass:
        TargetFilename|endswith: '\AppData\Local\Microsoft\Windows\UsrClass.dat'
    filter_main_ntuser:
        TargetFilename|re|i: '^C:\\Users\\[^\\]+\\NTUSER\.DAT$'
    filter_main_system:
        TargetFilename|startswith:
            - 'C:\Windows\System32\config\'
            - 'C:\Windows\SYSVOL\'
            - 'C:\Windows\ServiceProfiles\'
    condition: selection and not 1 of filter_main_*
falsepositives:
    - Backup or profile migration software
    - Forensic acquisition tools
level: high
regression_tests_path: regression_data/rules/windows/file/file_event/file_event_win_susp_registry_hive_file_creation/info.yml

KQL (Azure Sentinel)

imFileEvent
| where (TargetFileName endswith "\\UsrClass.dat" or TargetFileName endswith "\\NTUSER.DAT") and (not((TargetFileName endswith "\\AppData\\Local\\Microsoft\\Windows\\UsrClass.dat" or TargetFileName matches regex "(?i)^C:\\\\Users\\\\[^\\\\]+\\\\NTUSER\\.DAT$" or (TargetFileName startswith "C:\\Windows\\System32\\config\\" or TargetFileName startswith "C:\\Windows\\SYSVOL\\" or TargetFileName startswith "C:\\Windows\\ServiceProfiles\\"))))

Required Data Sources

Sentinel TableNotes
imFileEventEnsure this data connector is enabled

False Positive Guidance

MITRE ATT&CK Context

References

Original source: https://github.com/SigmaHQ/sigma/blob/master/rules/windows/file/file_event/file_event_win_susp_registry_hive_file_creation.yml