Detection rules › Sigma

HTTP Request to Low Reputation TLD or Suspicious File Extension

Status
experimental
Severity
medium
Log source
product zeek, service http
Author
@signalblur, Corelight
Source
github.com/SigmaHQ/sigma

Detects HTTP requests to low reputation TLDs (e.g. .xyz, .top, .ru) or ending in suspicious file extensions (.exe, .dll, .hta), which may indicate malicious activity.

MITRE ATT&CK coverage

TacticTechniques
Initial AccessNo specific technique
Command & ControlNo specific technique

Rule body yaml

title: HTTP Request to Low Reputation TLD or Suspicious File Extension
id: 68c2c604-92ad-468b-bf4a-aac49adad08c
status: experimental
description: |
    Detects HTTP requests to low reputation TLDs (e.g. .xyz, .top, .ru) or ending in suspicious file extensions (.exe, .dll, .hta), which may indicate malicious activity.
references:
    - https://www.howtogeek.com/137270/50-file-extensions-that-are-potentially-dangerous-on-windows
    - https://www.spamhaus.org/reputation-statistics/cctlds/domains/
author: '@signalblur, Corelight'
date: 2025-02-26
tags:
    - attack.initial-access
    - attack.command-and-control
logsource:
    product: zeek
    service: http
detection:
    # Suspicious TLD in the 'host' field OR malicious file extension in the 'uri' field.
    selection_suspicious_tld:
        host|endswith:
            - '.bid'
            - '.by'
            - '.cf'
            - '.click'
            - '.cm'
            - '.ga'
            - '.gq'
            - '.ir'
            - '.kp'
            - '.loan'
            - '.ml'
            - '.mm'
            - '.party'
            - '.pw'
            - '.ru'
            - '.su'
            - '.sy'
            - '.tk'
            - '.top'
            - '.tv'
            - '.ve'
            - '.work'
            - '.xyz'
    selection_malicious_ext:
        uri|endswith:
            - '.bat'
            - '.bin'
            - '.cmd'
            - '.cpl'
            - '.dll'
            - '.dylib'
            - '.elf'
            - '.exe'
            - '.hta'
            - '.iso'
            - '.jar'
            - '.js'
            - '.lnk'
            - '.msi'
            - '.pif'
            - '.ps1'
            - '.py'
            - '.reg'
            - '.scr'
            - '.sh'
            - '.so'
            - '.vbs'
            - '.wsf'
    selection_malicious_mime:
        resp_mime_types:
            - 'application/vnd.microsoft.portable-executable'
            - 'application/x-bat'
            - 'application/x-dosexec'
            - 'application/x-elf'
            - 'application/x-iso9660-image'
            - 'application/x-java-archive'
            - 'application/x-ms-shortcut'
            - 'application/x-msdos-program'
            - 'application/x-msdownload'
            - 'application/x-python-code'
            - 'application/x-sh'
    condition: selection_suspicious_tld and 1 of selection_malicious_*
falsepositives:
    - Rare legitimate software downloads from low quality TLDs
level: medium

Stages and Predicates

Stage 0: condition

selection_suspicious_tld and 1 of selection_malicious_*

Stage 1: selection_suspicious_tld

selection_suspicious_tld:
    host|endswith:
        - '.bid'
        - '.by'
        - '.cf'
        - '.click'
        - '.cm'
        - '.ga'
        - '.gq'
        - '.ir'
        - '.kp'
        - '.loan'
        - '.ml'
        - '.mm'
        - '.party'
        - '.pw'
        - '.ru'
        - '.su'
        - '.sy'
        - '.tk'
        - '.top'
        - '.tv'
        - '.ve'
        - '.work'
        - '.xyz'

Stage 2: selection_malicious_ext

selection_malicious_ext:
    uri|endswith:
        - '.bat'
        - '.bin'
        - '.cmd'
        - '.cpl'
        - '.dll'
        - '.dylib'
        - '.elf'
        - '.exe'
        - '.hta'
        - '.iso'
        - '.jar'
        - '.js'
        - '.lnk'
        - '.msi'
        - '.pif'
        - '.ps1'
        - '.py'
        - '.reg'
        - '.scr'
        - '.sh'
        - '.so'
        - '.vbs'
        - '.wsf'

Stage 3: selection_malicious_mime

selection_malicious_mime:
    resp_mime_types:
        - 'application/vnd.microsoft.portable-executable'
        - 'application/x-bat'
        - 'application/x-dosexec'
        - 'application/x-elf'
        - 'application/x-iso9660-image'
        - 'application/x-java-archive'
        - 'application/x-ms-shortcut'
        - 'application/x-msdos-program'
        - 'application/x-msdownload'
        - 'application/x-python-code'
        - 'application/x-sh'

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
hostends_with
  • .bid
  • .by
  • .cf
  • .click
  • .cm
  • .ga
  • .gq
  • .ir
  • .kp
  • .loan
  • .ml
  • .mm
  • .party
  • .pw
  • .ru
  • .su
  • .sy
  • .tk
  • .top
  • .tv
  • .ve
  • .work
  • .xyz
resp_mime_typeseq
  • application/vnd.microsoft.portable-executable
  • application/x-bat
  • application/x-dosexec
  • application/x-elf
  • application/x-iso9660-image
  • application/x-java-archive
  • application/x-ms-shortcut
  • application/x-msdos-program
  • application/x-msdownload
  • application/x-python-code
  • application/x-sh
uriends_with
  • .bat
  • .bin
  • .cmd
  • .cpl
  • .dll
  • .dylib
  • .elf
  • .exe
  • .hta
  • .iso
  • .jar
  • .js
  • .lnk
  • .msi
  • .pif
  • .ps1
  • .py
  • .reg
  • .scr
  • .sh
  • .so
  • .vbs
  • .wsf