Potentially Suspicious Image Load of Offreg.dll

Original Source: [Sigma source]
Title: Potentially Suspicious Image Load of Offreg.dll
Status: experimental
Description:Detects potentially suspicious loading of the Offline Registry Library (offreg.dll). Offreg.dll enables direct read/write access to offline registry hives without invoking the Windows Registry API, bypassing its associated audit logging and telemetry. Attackers may abuse this to stealthily modify registry hives while evading detection mechanisms that rely on standard registry event logs.
References:
  -https://learn.microsoft.com/en-us/windows/win32/devnotes/about-the-offline-registry-library
  -https://github.com/MSNightmare/LegacyHive
Author: Swachchhanda Shrawan Poudel (Nextron Systems)
Date: 2026-07-23
modified:None
Tags:
  • -'attack.defense-impairment'
  • -'attack.persistence'
  • -'attack.t1112'
Logsource:
  • category: image_load
  • product: windows
Detection:
  selection:
    ImageLoaded|endswith: '\offreg.dll'
  filter_main_system32:
    Image|startswith:
      -'C:\Windows\System32\'
      -'C:\Windows\SysWOW64\'
      -'C:\Windows\WinSxS\'

  filter_main_program_files:
    Image|startswith:
      -'C:\Program Files\'
      -'C:\Program Files (x86)\'

  filter_main_appdata_local_programs:
    Image|startswith: 'C:\Users\'
    Image|contains: '\AppData\Local\Programs\'
  filter_main_defender:
    Image|startswith: 'C:\ProgramData\Microsoft\Windows Defender\Platform\'
    Image|endswith: '\MsMpEng.exe'
  condition:selection and not 1 of filter_main_*
Falsepositives:
  -Third-party backup or forensic software that performs offline registry parsing
  -Windows deployment tools (DISM, ADK) run from non-standard paths
Level: medium