Detection rules › Sigma

Potential Shim Database Persistence via Sdbinst.EXE

Status
test
Severity
medium
Log source
product windows, category process_creation
Author
Markus Neis
Source
github.com/SigmaHQ/sigma

Detects installation of a new shim using sdbinst.exe. Adversaries may establish persistence and/or elevate privileges by executing malicious content triggered by application shims

MITRE ATT&CK coverage

Event coverage

ProviderEventTitle
SysmonEvent ID 1Process creation

Rule body yaml

title: Potential Shim Database Persistence via Sdbinst.EXE
id: 517490a7-115a-48c6-8862-1a481504d5a8
related:
    - id: 18ee686c-38a3-4f65-9f44-48a077141f42
      type: similar
status: test
description: |
    Detects installation of a new shim using sdbinst.exe.
    Adversaries may establish persistence and/or elevate privileges by executing malicious content triggered by application shims
references:
    - https://www.mandiant.com/resources/blog/fin7-shim-databases-persistence
author: Markus Neis
date: 2019-01-16
modified: 2023-12-06
tags:
    - attack.persistence
    - attack.privilege-escalation
    - attack.t1546.011
logsource:
    category: process_creation
    product: windows
detection:
    selection_img:
        - Image|endswith: '\sdbinst.exe'
        - OriginalFileName: 'sdbinst.exe'
    selection_cli:
        CommandLine|contains: '.sdb'
    filter_optional_iis:
        ParentImage|endswith: '\msiexec.exe'
        CommandLine|contains:
            # Expected behavior for IIS Express (e.g. https://www.hybrid-analysis.com/sample/15d4ff941f77f7bdfc9dfb2399b7b952a0a2c860976ef3e835998ff4796e5e91?environmentId=120)
            - ':\Program Files (x86)\IIS Express\iisexpressshim.sdb'
            - ':\Program Files\IIS Express\iisexpressshim.sdb'
    condition: all of selection_* and not 1 of filter_optional_*
falsepositives:
    - Unknown
level: medium

Stages and Predicates

Stage 0: condition

all of selection_* and not 1 of filter_optional_*

Stage 1: selection_img

selection_img:
    - Image|endswith: '\sdbinst.exe'
    - OriginalFileName: 'sdbinst.exe'

Stage 2: selection_cli

selection_cli:
    CommandLine|contains: '.sdb'

Stage 3: not filter_optional_iis

filter_optional_iis:
    ParentImage|endswith: '\msiexec.exe'
    CommandLine|contains:
        - ':\Program Files (x86)\IIS Express\iisexpressshim.sdb'
        - ':\Program Files\IIS Express\iisexpressshim.sdb'

Exclusions

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

FieldKindExcluded values
CommandLinematch:\Program Files (x86)\IIS Express\iisexpressshim.sdb
CommandLinematch:\Program Files\IIS Express\iisexpressshim.sdb
ParentImageends_with\msiexec.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
CommandLinematch
  • .sdb
Imageends_with
  • \sdbinst.exe corpus 2 (sigma 2)
OriginalFileNameeq
  • sdbinst.exe corpus 2 (sigma 2)