Sigma Rule Library

Rundll32 UNC Path Execution

Detects rundll32 execution where the DLL is located on a remote location (share). Threat actors can abuse the rundll32.exe binary to execute remote DLLs from a UNC pathh.

View on GitHubOpen raw file

Detection logic

selection_img

- Image|endswith: \rundll32.exe
- OriginalFileName: RUNDLL32.EXE
- CommandLine|contains: rundll32

selection_cli

CommandLine|contains:
  - " \\\\\\\\"
  - " '\\\\\\\\"
  - ' "\\\\'

filter_main_cli_pipe

CommandLine|contains: \\\\.\\pipe

Condition

all of selection_* and not 1 of filter_main_*

Raw YAML

title: Rundll32 UNC Path Execution
id: 5cdb711b-5740-4fb2-ba88-f7945027afac
status: test
description: |
    Detects rundll32 execution where the DLL is located on a remote location (share).
    Threat actors can abuse the rundll32.exe binary to execute remote DLLs from a UNC pathh.
references:
    - https://www.cybereason.com/blog/rundll32-the-infamous-proxy-for-executing-malicious-code
    - https://www.microsoft.com/en-us/security/blog/2026/07/16/acr-stealer-two-observed-intrusion-chains-amid-increased-threat-activity/
author: Nasreddine Bencherchali (Nextron Systems)
date: 2022-08-10
modified: 2026-07-20
tags:
    - attack.execution
    - attack.lateral-movement
    - attack.stealth
    - attack.t1021.002
    - attack.t1218.011
logsource:
    category: process_creation
    product: windows
detection:
    selection_img:
        - Image|endswith: '\rundll32.exe'
        - OriginalFileName: 'RUNDLL32.EXE'
        - CommandLine|contains: 'rundll32'
    selection_cli:
        CommandLine|contains:
            - ' \\\\'
            - ' ''\\\\'
            - ' "\\\\'
    filter_main_cli_pipe:
        CommandLine|contains: '\\\\.\\pipe'
    condition: all of selection_* and not 1 of filter_main_*
falsepositives:
    - Unlikely
level: high
regression_tests_path: regression_data/rules/windows/process_creation/proc_creation_win_rundll32_unc_path/info.yml

False positives

  • Unlikely

References

Similar rules