Detection rules › Sigma

Executable from Webdav

Status
test
Severity
medium
Log source
product zeek, service http
Author
SOC Prime, Adam Swan
Source
github.com/SigmaHQ/sigma

Detects executable access via webdav6. Can be seen in APT 29 such as from the emulated APT 29 hackathon https://github.com/OTRF/detection-hackathon-apt29/

MITRE ATT&CK coverage

TacticTechniques
Command & ControlT1105 Ingress Tool Transfer

Rule body yaml

title: Executable from Webdav
id: aac2fd97-bcba-491b-ad66-a6edf89c71bf
status: test
description: 'Detects executable access via webdav6. Can be seen in APT 29 such as from the emulated APT 29 hackathon https://github.com/OTRF/detection-hackathon-apt29/'
references:
    - http://carnal0wnage.attackresearch.com/2012/06/webdav-server-to-download-custom.html
    - https://github.com/OTRF/detection-hackathon-apt29
author: 'SOC Prime, Adam Swan'
date: 2020-05-01
modified: 2021-11-27
tags:
    - attack.command-and-control
    - attack.t1105
logsource:
    product: zeek
    service: http
detection:
    selection_webdav:
        - c-useragent|contains: 'WebDAV'
        - c-uri|contains: 'webdav'
    selection_executable:
        - resp_mime_types|contains: 'dosexec'
        - c-uri|endswith: '.exe'
    condition: selection_webdav and selection_executable
falsepositives:
    - Unknown
level: medium

Stages and Predicates

Stage 0: condition

selection_webdav and selection_executable

Stage 1: selection_webdav

selection_webdav:
    - c-useragent|contains: 'WebDAV'
    - c-uri|contains: 'webdav'

Stage 2: selection_executable

selection_executable:
    - resp_mime_types|contains: 'dosexec'
    - c-uri|endswith: '.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
c-uriends_with
  • .exe
c-urimatch
  • webdav
c-useragentmatch
  • WebDAV
resp_mime_typesmatch
  • dosexec