Detection rules › Sigma

EAP service activation by Liontail framework for DLL sideloading (via command)

Status
stable
Severity
medium
Log source
product windows, category process_creation
Author
mdecrevoisier
Source
github.com/mdecrevoisier/SIGMA-detection-rules

Detects scenarios where an attacker enable the Eaphost component in order to perform a DLL sideloading attack.

MITRE ATT&CK coverage

Event coverage

Rule body yaml

title: EAP service activation by Liontail framework for DLL sideloading (via command)
description: Detects scenarios where an attacker enable the Eaphost component in order to perform a DLL sideloading attack.
references:
- https://research.checkpoint.com/2023/from-albania-to-the-middle-east-the-scarred-manticore-is-listening/
- https://securelist.com/incident-response-interesting-cases-2023/113611/
tags:
- attack.privilege_escalation
- attack.t1543.003 # Create or Modify System Process: Windows Service
author: mdecrevoisier
status: stable
logsource:
  product: windows
  category: process_creation
detection: # sc.exe config Eaphost start=auto
  selection:
    Image|endswith: '\sc.exe'
    CommandLine|contains|all:
      - config 
      - Eaphost 
      - start
  condition: selection
falsepositives:
- Administrator activity 
- VPN/IPsec server activation
- RAS/RADIUS server activation
level: medium

Stages and Predicates

Stage 0: condition

selection

Stage 1: selection

selection:
  Image|endswith: '\sc.exe'
  CommandLine|contains|all:
    - config
    - Eaphost
    - start

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
  • Eaphost
  • config corpus 16 (sigma 15, splunk 1)
  • start corpus 13 (sigma 11, splunk 2)
Imageends_with
  • \sc.exe corpus 30 (sigma 30)