Detection rules › Sigma

Execution via WorkFolders.exe

Status
test
Severity
high
Log source
product windows, category process_creation
Author
Maxime Thiebaut (@0xThiebaut)
Source
github.com/SigmaHQ/sigma

Detects using WorkFolders.exe to execute an arbitrary control.exe

MITRE ATT&CK coverage

Event coverage

Rule body yaml

title: Execution via WorkFolders.exe
id: 0bbc6369-43e3-453d-9944-cae58821c173
status: test
description: Detects using WorkFolders.exe to execute an arbitrary control.exe
references:
    - https://twitter.com/elliotkillick/status/1449812843772227588
author: Maxime Thiebaut (@0xThiebaut)
date: 2021-10-21
modified: 2022-12-25
tags:
    - attack.stealth
    - attack.t1218
logsource:
    category: process_creation
    product: windows
detection:
    selection:
        Image|endswith: '\control.exe'
        ParentImage|endswith: '\WorkFolders.exe'
    filter:
        Image: 'C:\Windows\System32\control.exe'
    condition: selection and not filter
falsepositives:
    - Legitimate usage of the uncommon Windows Work Folders feature.
level: high

Stages and Predicates

Stage 0: condition

selection and not filter

Stage 1: selection

selection:
    Image|endswith: '\control.exe'
    ParentImage|endswith: '\WorkFolders.exe'

Stage 2: not filter

filter:
    Image: 'C:\Windows\System32\control.exe'

Exclusions

Top-level NOT(...) conjuncts: predicates this rule actively suppresses.

FieldKindExcluded values
ImageeqC:\Windows\System32\control.exe

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
  • \control.exe corpus 5 (sigma 5)
ParentImageends_with
  • \WorkFolders.exe