Sublime Security low experimental mql

Brand impersonation: Vanta

Impersonation of Vanta.

View Source

Detection Logic

type.inbound
and (
  regex.imatch(sender.display_name, '\bvanta\b')
  or regex.imatch(sender.email.local_part, '(\b)vanta
| vanta(\b)')
  or strings.ilevenshtein(sender.email.domain.sld, 'vanta') <= 1
)
and not (
  strings.ilike(sender.display_name, '*advantage*')
  or strings.ilike(sender.email.email, '*advantage*')
  or strings.ilevenshtein(sender.email.domain.sld, 'advantage') <= 1
)
and sender.email.domain.root_domain in $free_email_providers
and sender.email.email not in $sender_emails

// 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
)

Field Validations

Loading…

Comments (0)

Loading comments...