Detection rules › Sublime MQL

Brand impersonation: Dashlane

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

Impersonation of the password management software Dashlane.

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 (
  regex.icontains(sender.display_name, '\bDashlane\b')
  or strings.ilike(sender.email.domain.domain, '*Dashlane*')
)
and sender.email.domain.root_domain not in~ ('dashlane.com')

// negate highly trusted sender domains unless they fail DMARC authentication
and (
  (
    sender.email.domain.root_domain in $high_trust_sender_root_domains
    and not headers.auth_summary.dmarc.pass
  )
  or sender.email.domain.root_domain not in $high_trust_sender_root_domains
)

Detection logic

Scope: inbound message.

Impersonation of the password management software Dashlane.

  1. inbound message
  2. any of:
    • sender.display_name matches '\\bDashlane\\b'
    • sender.email.domain.domain matches '*Dashlane*'
  3. sender.email.domain.root_domain not in ('dashlane.com')
  4. any of:
    • all of:
      • sender.email.domain.root_domain in $high_trust_sender_root_domains
      • not:
        • headers.auth_summary.dmarc.pass
    • sender.email.domain.root_domain not in $high_trust_sender_root_domains

Inspects: headers.auth_summary.dmarc.pass, sender.display_name, sender.email.domain.domain, sender.email.domain.root_domain, type.inbound. Sensors: regex.icontains, strings.ilike. Reference lists: $high_trust_sender_root_domains.

Indicators matched (3)

FieldMatchValue
regex.icontainsregex\bDashlane\b
strings.ilikesubstring*Dashlane*
sender.email.domain.root_domainmemberdashlane.com