Detection rules › Sigma

Suspicious VBScript UN2452 Pattern

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

Detects suspicious inline VBScript keywords as used by UNC2452

MITRE ATT&CK coverage

Event coverage

Rule body yaml

title: Suspicious VBScript UN2452 Pattern
id: 20c3f09d-c53d-4e85-8b74-6aa50e2f1b61
status: test
description: Detects suspicious inline VBScript keywords as used by UNC2452
references:
    - https://www.microsoft.com/security/blog/2021/03/04/goldmax-goldfinder-sibot-analyzing-nobelium-malware/
author: Florian Roth (Nextron Systems)
date: 2021-03-05
modified: 2022-10-09
tags:
    - attack.privilege-escalation
    - attack.persistence
    - attack.t1547.001
    - detection.emerging-threats
logsource:
    category: process_creation
    product: windows
detection:
    selection:
        CommandLine|contains|all:
            - 'Execute'
            - 'CreateObject'
            - 'RegRead'
            - 'window.close'
            - '\Microsoft\Windows\CurrentVersion'
    filter:
        CommandLine|contains: '\Software\Microsoft\Windows\CurrentVersion\Run'
    condition: selection and not filter
falsepositives:
    - Unknown
level: high

Stages and Predicates

Stage 0: condition

selection and not filter

Stage 1: selection

selection:
    CommandLine|contains|all:
        - 'Execute'
        - 'CreateObject'
        - 'RegRead'
        - 'window.close'
        - '\Microsoft\Windows\CurrentVersion'

Stage 2: not filter

filter:
    CommandLine|contains: '\Software\Microsoft\Windows\CurrentVersion\Run'

Exclusions

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

FieldKindExcluded values
CommandLinematch\Software\Microsoft\Windows\CurrentVersion\Run

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
CommandLinematch
  • CreateObject corpus 3 (sigma 2, kusto 1)
  • Execute corpus 5 (kusto 3, sigma 2)
  • RegRead corpus 5 (kusto 3, sigma 2)
  • \Microsoft\Windows\CurrentVersion corpus 2 (sigma 1, kusto 1)
  • window.close corpus 5 (kusto 3, sigma 2)