Detection rules › Sigma

Potential DLL Injection Or Execution Using Tracker.exe

Status
test
Severity
medium
Log source
product windows, category process_creation
Author
Avneet Singh @v3t0_, oscd.community
Source
github.com/SigmaHQ/sigma

Detects potential DLL injection and execution using "Tracker.exe"

MITRE ATT&CK coverage

Event coverage

ProviderEventTitle
SysmonEvent ID 1Process creation

Rule body yaml

title: Potential DLL Injection Or Execution Using Tracker.exe
id: 148431ce-4b70-403d-8525-fcc2993f29ea
status: test
description: Detects potential DLL injection and execution using "Tracker.exe"
references:
    - https://lolbas-project.github.io/lolbas/OtherMSBinaries/Tracker/
author: 'Avneet Singh @v3t0_, oscd.community'
date: 2020-10-18
modified: 2023-01-09
tags:
    - attack.privilege-escalation
    - attack.stealth
    - attack.t1055.001
logsource:
    category: process_creation
    product: windows
detection:
    selection_img:
        - Image|endswith: '\tracker.exe'
        - Description: 'Tracker'
    selection_cli:
        CommandLine|contains:
            - ' /d '
            - ' /c '
    filter_msbuild1:
        CommandLine|contains: ' /ERRORREPORT:PROMPT '
    filter_msbuild2:
        # Example:
        #   GrandparentImage: C:\Program Files\Microsoft Visual Studio\2022\Community\Msbuild\Current\Bin\MSBuild.exe
        #   ParentCommandLine: "C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Current\Bin\MSBuild.exe" /nologo /nodemode:1 /nodeReuse:true /low:false
        #   CommandLine: "C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Current\Bin\Tracker.exe" @"C:\Users\user\AppData\Local\Temp\tmp05c7789bc5534838bf96d7a0fed1ffff.tmp" /c "C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.29.30133\bin\HostX86\x64\Lib.exe"
        ParentImage|endswith:
            - '\Msbuild\Current\Bin\MSBuild.exe'
            - '\Msbuild\Current\Bin\amd64\MSBuild.exe'
    condition: all of selection_* and not 1 of filter_*
falsepositives:
    - Unknown
level: medium

Stages and Predicates

Stage 0: condition

all of selection_* and not 1 of filter_*

Stage 1: selection_img

selection_img:
    - Image|endswith: '\tracker.exe'
    - Description: 'Tracker'

Stage 2: selection_cli

selection_cli:
    CommandLine|contains:
        - ' /d '
        - ' /c '

Stage 3: not filter_*

filter_msbuild1:
    CommandLine|contains: ' /ERRORREPORT:PROMPT '
filter_msbuild2:
    ParentImage|endswith:
        - '\Msbuild\Current\Bin\MSBuild.exe'
        - '\Msbuild\Current\Bin\amd64\MSBuild.exe'

Exclusions

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

FieldKindExcluded values
CommandLinematch /ERRORREPORT:PROMPT
ParentImageends_with\Msbuild\Current\Bin\MSBuild.exe
ParentImageends_with\Msbuild\Current\Bin\amd64\MSBuild.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
  • /c corpus 6 (sigma 4, splunk 2)
  • /d corpus 3 (sigma 2, splunk 1)
Descriptioneq
  • Tracker
Imageends_with
  • \tracker.exe