Windows DLL side-loading via appverifUI.dll image loads

Alerts when appverifUI.dll is loaded on Windows from unexpected paths, a common DLL sideloading technique.

FreeReviewedSigma · High · v2
Product
windows
Category
image_load
Author
X__Junior (Nextron Systems) (SigmaHQ), DRL 1.1
Published
2023-06-20
Updated
2026-07-31
title: Windows DLL side-loading via appverifUI.dll image loads
id: 1f4bd906-c7ca-4a2a-a5d6-4e7aa1285663
status: test
description: "This rule flags process image-load events where a DLL named appverifUI.dll is loaded from paths other than the expected, legitimate Windows locations for appverif.exe components. Attackers may use DLL side-loading to execute malicious code under the context of a trusted binary, aiming for stealth and persistence. It relies on Windows image-load telemetry (category: image_load) capturing the full ImageLoaded path for the DLL."
references:
  - https://web.archive.org/web/20220519091349/https://fatrodzianko.com/2020/02/15/dll-side-loading-appverif-exe/
  - https://github.com/SigmaHQ/sigma/blob/master/rules/windows/image_load/image_load_side_load_appverifui.yml
author: X__Junior (Nextron Systems), Huntrule Team
date: 2023-06-20
tags:
  - attack.persistence
  - attack.privilege-escalation
  - attack.execution
  - attack.stealth
  - attack.t1574.001
logsource:
  category: image_load
  product: windows
detection:
  selection:
    ImageLoaded|endswith: \appverifUI.dll
  filter_main_legit_path:
    Image:
      - C:\Windows\SysWOW64\appverif.exe
      - C:\Windows\System32\appverif.exe
    ImageLoaded|startswith:
      - C:\Windows\System32\
      - C:\Windows\SysWOW64\
      - C:\Windows\WinSxS\
  condition: selection and not 1 of filter_main_*
falsepositives:
  - Unlikely
level: high
license: DRL-1.1
related:
  - id: ee6cea48-c5b6-4304-a332-10fc6446f484
    type: derived