Detection rules › Sublime MQL

Brand impersonation: Xodo Sign

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

Detects messages impersonating Xodo Sign with 'Processed by Xodo Sign' text from unauthorized senders that fail DMARC authentication.

Threat classification

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

CategoryValues
Attack typesCredential Phishing
Tactics and techniquesImpersonation: Brand, Social engineering

Event coverage

Rule body MQL

type.inbound
and strings.icontains(body.current_thread.text, "processed by xodo sign")
and not (
  sender.email.domain.root_domain == "eversign.com"
  and headers.auth_summary.dmarc.pass
)

Detection logic

Scope: inbound message.

Detects messages impersonating Xodo Sign with 'Processed by Xodo Sign' text from unauthorized senders that fail DMARC authentication.

  1. inbound message
  2. body.current_thread.text contains 'processed by xodo sign'
  3. not:
    • all of:
      • sender.email.domain.root_domain is 'eversign.com'
      • headers.auth_summary.dmarc.pass

Inspects: body.current_thread.text, headers.auth_summary.dmarc.pass, sender.email.domain.root_domain, type.inbound. Sensors: strings.icontains.

Indicators matched (2)

FieldMatchValue
strings.icontainssubstringprocessed by xodo sign
sender.email.domain.root_domainequalseversign.com