Windows Browser-Injected rundll32 Execution Indicative of GuLoader Activity

Flags rundll32.exe being launched from a browser process, matching GuLoader-style injected browser execution behavior on Windows.

FreeReviewedSigma · High · v5
Product
windows
Category
process_creation
Author
@kostastsale (SigmaHQ), DRL 1.1
Published
2023-08-07
Updated
2026-07-31
title: Windows Browser-Injected rundll32 Execution Indicative of GuLoader Activity
id: 5a500cb2-963a-41ed-9997-ec343142521e
status: test
description: This rule matches process creation where a rundll32.exe instance is spawned with its command line ending in \rundll32.exe and the parent process image is a browser (chrome.exe, firefox.exe, or msedge.exe). It is intended to flag GuLoader-style behavior where malware executes via a browser-injected process path and then initiates activity through rundll32. Detection relies on Windows process creation telemetry including parent image, child image, and command line fields.
references:
  - Internal Research
  - https://github.com/SigmaHQ/sigma/blob/master/rules-emerging-threats/2023/Malware/GuLoader/proc_creation_win_malware_guloader_execution.yml
author: "@kostastsale, Huntrule Team"
date: 2023-08-07
tags:
  - attack.privilege-escalation
  - attack.stealth
  - attack.t1055
  - detection.emerging-threats
logsource:
  category: process_creation
  product: windows
detection:
  selection:
    ParentImage|endswith:
      - \chrome.exe
      - \firefox.exe
      - \msedge.exe
    Image|endswith: \rundll32.exe
    CommandLine|endswith: \rundll32.exe
  condition: selection
falsepositives:
  - Unlikely
level: high
license: DRL-1.1
related:
  - id: 89e1490f-1a3e-452a-bbb8-b68a5f58072f
    type: derived