Detection rules › Sigma

Detection of default a Windows host name in login attempts

Status
experimental
Severity
medium
Log source
product windows, service security
Author
mdecrevoisier
Source
github.com/mdecrevoisier/SIGMA-detection-rules

Detects scenarios where a default Windows host name pattern (WIN-...) is detected during a login attempt. Having a host with a default name may be an indicator of a fresh machine deployed by an attacker to evade detection and perform malicious activities.

MITRE ATT&CK coverage

Event coverage

Rule body yaml

title: Detection of default a Windows host name in login attempts
description: Detects scenarios where a default Windows host name pattern (WIN-...) is detected during a login attempt. Having a host with a default name may be an indicator of a fresh machine deployed by an attacker to evade detection and perform malicious activities.
references:
- https://cybercx.com.au/blog/akira-ransomware/
- https://www.techtarget.com/searchenterprisedesktop/blog/Windows-Enterprise-Desktop/Win10-ComputerName-Generation
tags:
- attack.defense_evasion
- attack.t1564.006 # Hide Artifacts: Run Virtual Instance 
author: mdecrevoisier
status: experimental
logsource:
  product: windows
  service: security
detection:
  selection:
    EventID: 
      - 4624 
      - 4625
      - 4776
    WorkstationName|startswith:
      - 'WIN-'
      - 'DESKTOP-'
      - 'PC-'
      - 'WORKSTATION-'
  condition: selection
falsepositives:
- companies using these default patterns
level: medium

Stages and Predicates

Stage 0: condition

selection

Stage 1: selection

selection:
  EventID:
    - 4624
    - 4625
    - 4776
  WorkstationName|startswith:
    - 'WIN-'
    - 'DESKTOP-'
    - 'PC-'
    - 'WORKSTATION-'

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
WorkstationNamestarts_with
  • DESKTOP-
  • PC-
  • WIN-
  • WORKSTATION-