Detection rules › Sigma

Trickbot Malware Activity

Status
stable
Severity
high
Log source
product windows, category process_creation
Author
Florian Roth (Nextron Systems)
Source
github.com/SigmaHQ/sigma

Detects Trickbot malware process tree pattern in which "rundll32.exe" is a parent of "wermgr.exe"

MITRE ATT&CK coverage

TacticTechniques
ExecutionT1559 Inter-Process Communication

Event coverage

ProviderEventTitle
SysmonEvent ID 1Process creation

Rule body yaml

title: Trickbot Malware Activity
id: 58bf96d9-ff5f-44bd-8dcc-1c4f79bf3a27
related:
    - id: c37510b8-2107-4b78-aa32-72f251e7a844
      type: similar
status: stable
description: Detects Trickbot malware process tree pattern in which "rundll32.exe" is a parent of "wermgr.exe"
references:
    - https://twitter.com/swisscom_csirt/status/1331634525722521602?s=20
    - https://app.any.run/tasks/f74c5157-8508-4ac6-9805-d63fe7b0d399/
author: Florian Roth (Nextron Systems)
date: 2020-11-26
modified: 2021-11-27
tags:
    - attack.execution
    - attack.t1559
    - detection.emerging-threats
logsource:
    category: process_creation
    product: windows
detection:
    selection:
        Image|endswith: '\wermgr.exe'
        ParentImage|endswith: '\rundll32.exe'
        ParentCommandLine|contains: 'DllRegisterServer'
    condition: selection
falsepositives:
    - Unknown
level: high

Stages and Predicates

Stage 0: condition

selection

Stage 1: selection

selection:
    Image|endswith: '\wermgr.exe'
    ParentImage|endswith: '\rundll32.exe'
    ParentCommandLine|contains: 'DllRegisterServer'

Indicators

Each row is a field, operator, and value that the rule matches. The corpus column counts how many other rules in the catalog look for the same combination: high numbers point to widely-used, community-vetted indicators. Blank or 1 shows that the indicator is specific to this rule.

FieldKindValues
Imageends_with
  • \wermgr.exe corpus 5 (sigma 5)
ParentCommandLinematch
  • DllRegisterServer
ParentImageends_with
  • \rundll32.exe corpus 15 (sigma 15)