Detection rules › Sigma

Blue Mockingbird

Status
test
Severity
high
Log source
product windows, category process_creation
Author
Trent Liffick (@tliffick)
Source
github.com/SigmaHQ/sigma

Attempts to detect system changes made by Blue Mockingbird

MITRE ATT&CK coverage

Event coverage

Rule body yaml

title: Blue Mockingbird
id: c3198a27-23a0-4c2c-af19-e5328d49680e
related:
    - id: ce239692-aa94-41b3-b32f-9cab259c96ea
      type: merged
status: test
description: Attempts to detect system changes made by Blue Mockingbird
references:
    - https://redcanary.com/blog/blue-mockingbird-cryptominer/
author: Trent Liffick (@tliffick)
date: 2020-05-14
modified: 2022-10-09
tags:
    - attack.persistence
    - attack.execution
    - attack.defense-impairment
    - attack.t1112
    - attack.t1047
    - detection.emerging-threats
logsource:
    category: process_creation
    product: windows
detection:
    sc_cmd:
        Image|endswith: '\cmd.exe'
        CommandLine|contains|all:
            - 'sc config'
            - 'wercplsupporte.dll'
    wmic_cmd:
        Image|endswith: '\wmic.exe'
        CommandLine|endswith: 'COR_PROFILER'
    condition: sc_cmd or wmic_cmd
falsepositives:
    - Unknown
level: high

Stages and Predicates

Stage 0: condition

sc_cmd or wmic_cmd

Stage 1: sc_cmd

sc_cmd:
    Image|endswith: '\cmd.exe'
    CommandLine|contains|all:
        - 'sc config'
        - 'wercplsupporte.dll'

Stage 2: wmic_cmd

wmic_cmd:
    Image|endswith: '\wmic.exe'
    CommandLine|endswith: 'COR_PROFILER'

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
CommandLineends_with
  • COR_PROFILER
CommandLinematch
  • sc config
  • wercplsupporte.dll
Imageends_with
  • \cmd.exe corpus 130 (sigma 130)
  • \wmic.exe corpus 60 (sigma 60)