Detection rules › Sublime MQL

Link: Flare-branded credential harvesting via Cloudflare tunnels

Severity
high
Type
rule
Source
github.com/sublime-security/sublime-rules

Detects inbound messages that begin with 'Flare' branding (such as FlareDoc, FlareAudio, FlareBill, FlareReport) and contain links to trycloudflare.com domains. This pattern represents a consistent actor template using Cloudflare tunnels for credential harvesting operations.

Threat classification

Sublime's own taxonomy (not MITRE ATT&CK).

CategoryValues
Attack typesCredential Phishing
Tactics and techniquesFree subdomain host, Social engineering

Event coverage

Rule body MQL

type.inbound
and strings.starts_with(body.current_thread.text, 'Flare') 
and any(body.links, .href_url.domain.root_domain == "trycloudflare.com")

Detection logic

Scope: inbound message.

Detects inbound messages that begin with 'Flare' branding (such as FlareDoc, FlareAudio, FlareBill, FlareReport) and contain links to trycloudflare.com domains. This pattern represents a consistent actor template using Cloudflare tunnels for credential harvesting operations.

  1. inbound message
  2. body.current_thread.text starts with 'Flare'
  3. any of body.links where:
    • .href_url.domain.root_domain is 'trycloudflare.com'

Inspects: body.current_thread.text, body.links, body.links[].href_url.domain.root_domain, type.inbound. Sensors: strings.starts_with.

Indicators matched (2)

FieldMatchValue
strings.starts_withprefixFlare
body.links[].href_url.domain.root_domainequalstrycloudflare.com