Detection rules › Sigma

Use NTFS Short Name in Image

Status
test
Severity
medium
Log source
product windows, category process_creation
Author
frack113, Nasreddine Bencherchali (Nextron Systems)
Source
github.com/SigmaHQ/sigma

Detect use of the Windows 8.3 short name. Which could be used as a method to avoid Image based detection

MITRE ATT&CK coverage

Event coverage

Rule body yaml

title: Use NTFS Short Name in Image
id: 3ef5605c-9eb9-47b0-9a71-b727e6aa5c3b
related:
    - id: dd6b39d9-d9be-4a3b-8fe0-fe3c6a5c1795
      type: similar
status: test
description: Detect use of the Windows 8.3 short name. Which could be used as a method to avoid Image based detection
references:
    - https://www.acunetix.com/blog/articles/windows-short-8-3-filenames-web-security-problem/
    - https://learn.microsoft.com/en-us/previous-versions/windows/it-pro/windows-2000-server/cc959352(v=technet.10)
    - https://twitter.com/jonasLyk/status/1555914501802921984
author: frack113, Nasreddine Bencherchali (Nextron Systems)
date: 2022-08-06
modified: 2023-07-20
tags:
    - attack.stealth
    - attack.t1564.004
logsource:
    category: process_creation
    product: windows
detection:
    selection:
        Image|contains:
            - '~1.bat'
            - '~1.dll'
            - '~1.exe'
            - '~1.hta'
            - '~1.js'
            - '~1.msi'
            - '~1.ps1'
            - '~1.tmp'
            - '~1.vbe'
            - '~1.vbs'
            - '~2.bat'
            - '~2.dll'
            - '~2.exe'
            - '~2.hta'
            - '~2.js'
            - '~2.msi'
            - '~2.ps1'
            - '~2.tmp'
            - '~2.vbe'
            - '~2.vbs'
    filter_main_generic_parent:
        ParentImage: 'C:\Windows\explorer.exe'
    filter_optional_webex:
        ParentImage|endswith: '\WebEx\WebexHost.exe'
    filter_optional_thor:
        ParentImage|endswith: '\thor\thor64.exe'
    filter_optional_winzip:
        Image: 'C:\PROGRA~1\WinZip\WZPREL~1.EXE'
    filter_optional_vcred:
        Image|endswith: '\VCREDI~1.EXE'
    condition: selection and not 1 of filter_main_* and not 1 of filter_optional_*
falsepositives:
    - Software Installers
level: medium

Stages and Predicates

Stage 0: condition

selection and not 1 of filter_main_* and not 1 of filter_optional_*

Stage 1: selection

selection:
    Image|contains:
        - '~1.bat'
        - '~1.dll'
        - '~1.exe'
        - '~1.hta'
        - '~1.js'
        - '~1.msi'
        - '~1.ps1'
        - '~1.tmp'
        - '~1.vbe'
        - '~1.vbs'
        - '~2.bat'
        - '~2.dll'
        - '~2.exe'
        - '~2.hta'
        - '~2.js'
        - '~2.msi'
        - '~2.ps1'
        - '~2.tmp'
        - '~2.vbe'
        - '~2.vbs'

Stage 2: not filter_main_generic_parent

filter_main_generic_parent:
    ParentImage: 'C:\Windows\explorer.exe'

Stage 3: not filter_optional_*

filter_optional_webex:
    ParentImage|endswith: '\WebEx\WebexHost.exe'
filter_optional_thor:
    ParentImage|endswith: '\thor\thor64.exe'
filter_optional_winzip:
    Image: 'C:\PROGRA~1\WinZip\WZPREL~1.EXE'
filter_optional_vcred:
    Image|endswith: '\VCREDI~1.EXE'

Exclusions

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

FieldKindExcluded values
ParentImageeqC:\Windows\explorer.exe
Imageends_with\VCREDI~1.EXE
ImageeqC:\PROGRA~1\WinZip\WZPREL~1.EXE
ParentImageends_with\WebEx\WebexHost.exe
ParentImageends_with\thor\thor64.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
Imagematch
  • ~1.bat
  • ~1.dll
  • ~1.exe
  • ~1.hta
  • ~1.js
  • ~1.msi
  • ~1.ps1
  • ~1.tmp
  • ~1.vbe
  • ~1.vbs
  • ~2.bat
  • ~2.dll
  • ~2.exe
  • ~2.hta
  • ~2.js
  • ~2.msi
  • ~2.ps1
  • ~2.tmp
  • ~2.vbe
  • ~2.vbs