Detection rules › Sigma

Goofy Guineapig Backdoor Service Creation

Status
test
Severity
critical
Log source
product windows, service system
Author
Nasreddine Bencherchali (Nextron Systems)
Source
github.com/SigmaHQ/sigma

Detects service creation persistence used by the Goofy Guineapig backdoor

MITRE ATT&CK coverage

TacticTechniques
PersistenceNo specific technique

Event coverage

Rule body yaml

title: Goofy Guineapig Backdoor Service Creation
id: 8c15dd74-9570-4f48-80b2-29996fd91ee6
status: test
description: Detects service creation persistence used by the Goofy Guineapig backdoor
references:
    - https://www.ncsc.gov.uk/static-assets/documents/malware-analysis-reports/goofy-guineapig/NCSC-MAR-Goofy-Guineapig.pdf
author: Nasreddine Bencherchali (Nextron Systems)
date: 2023-05-15
tags:
    - attack.persistence
    - detection.emerging-threats
logsource:
    product: windows
    service: system
detection:
    selection:
        Provider_Name: 'Service Control Manager'
        EventID: 7045
        ServiceName: 'GoogleUpdate'
        ImagePath|contains|all:
            - 'rundll32'
            - 'FileProtocolHandler'
            - '\ProgramData\GoogleUpdate\GoogleUpdate.exe'
    condition: selection
falsepositives:
    - Unlikely
level: critical

Stages and Predicates

Stage 0: condition

selection

Stage 1: selection

selection:
    Provider_Name: 'Service Control Manager'
    EventID: 7045
    ServiceName: 'GoogleUpdate'
    ImagePath|contains|all:
        - 'rundll32'
        - 'FileProtocolHandler'
        - '\ProgramData\GoogleUpdate\GoogleUpdate.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
ImagePathmatch
  • FileProtocolHandler
  • \ProgramData\GoogleUpdate\GoogleUpdate.exe
  • rundll32 corpus 4 (sigma 4)
Provider_Nameeq
  • Service Control Manager corpus 50 (sigma 50)
ServiceNameeq
  • GoogleUpdate