Detection rules › Sublime MQL

Brand impersonation: KnowBe4

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

Impersonation of KnowBe4.

Threat classification

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

CategoryValues
Attack typesCredential Phishing, Spam
Tactics and techniquesFree email provider, Impersonation: Brand, Lookalike domain, Social engineering

Event coverage

Rule body MQL

type.inbound
and (
  sender.display_name =~ 'KnowBe4'
  or strings.ilevenshtein(sender.display_name, 'KnowBe4') <= 1
  or strings.icontains(sender.email.domain.domain, '*KnowBe4*')
)
and (
  sender.email.domain.root_domain not in ('knowbe4.com')
  or (
    sender.email.domain.root_domain in ('knowbe4.com')
    and not headers.auth_summary.dmarc.pass
  )
)

// 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 KnowBe4.

  1. inbound message
  2. any of:
    • sender.display_name is 'KnowBe4'
    • sender.display_name is similar to 'KnowBe4'
    • sender.email.domain.domain contains '*KnowBe4*'
  3. any of:
    • sender.email.domain.root_domain not in ('knowbe4.com')
    • all of:
      • sender.email.domain.root_domain in ('knowbe4.com')
      • not:
        • headers.auth_summary.dmarc.pass
  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: strings.icontains, strings.ilevenshtein. Reference lists: $high_trust_sender_root_domains.

Indicators matched (4)

FieldMatchValue
sender.display_nameequalsKnowBe4
strings.ilevenshteinfuzzyKnowBe4
strings.icontainssubstring*KnowBe4*
sender.email.domain.root_domainmemberknowbe4.com