Detection rules › Sigma

Potential QBot Activity

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

Detects potential QBot activity by looking for process executions used previously by QBot

MITRE ATT&CK coverage

Event coverage

Rule body yaml

title: Potential QBot Activity
id: 4fcac6eb-0287-4090-8eea-2602e4c20040
status: stable
description: Detects potential QBot activity by looking for process executions used previously by QBot
references:
    - https://twitter.com/killamjr/status/1179034907932315648
    - https://app.any.run/tasks/2e0647b7-eb86-4f72-904b-d2d0ecac07d1/
author: Florian Roth (Nextron Systems)
date: 2019-10-01
modified: 2023-02-03
tags:
    - attack.execution
    - attack.t1059.005
    - detection.emerging-threats
logsource:
    category: process_creation
    product: windows
detection:
    selection1:
        ParentImage|endswith: '\WinRAR.exe'
        Image|endswith: '\wscript.exe'
    selection2:
        CommandLine|contains: ' /c ping.exe -n 6 127.0.0.1 & type '
    selection3:
        CommandLine|contains|all:
            - 'regsvr32.exe'
            - 'C:\ProgramData'
            - '.tmp'
    condition: 1 of selection*
falsepositives:
    - Unlikely
level: critical

Stages and Predicates

Stage 0: condition

1 of selection*

Stage 1: selection1

selection1:
    ParentImage|endswith: '\WinRAR.exe'
    Image|endswith: '\wscript.exe'

Stage 2: selection2

selection2:
    CommandLine|contains: ' /c ping.exe -n 6 127.0.0.1 & type '

Stage 3: selection3

selection3:
    CommandLine|contains|all:
        - 'regsvr32.exe'
        - 'C:\ProgramData'
        - '.tmp'

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
  • /c ping.exe -n 6 127.0.0.1 & type
  • .tmp corpus 3 (sigma 3)
  • C:\ProgramData
  • regsvr32.exe corpus 3 (sigma 3)
Imageends_with
  • \wscript.exe corpus 75 (sigma 75)
ParentImageends_with
  • \WinRAR.exe corpus 5 (sigma 5)