You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: "Detects messages impersonating Charter Spectrum by using variations of 'Spectrum' or 'MyCharter' in the display name while not originating from legitimate Charter domains or failing DMARC authentication."
3
+
type: "rule"
4
+
severity: "medium"
5
+
source: |
6
+
type.inbound
7
+
// Claim to be Charter or Spectrum in the Display Name
8
+
and regex.icontains(sender.display_name, 'spe[cç]trum', 'My[Cç]harter')
9
+
// Exclude authorized sending through legitimate sending domains
10
+
and not (
11
+
sender.email.domain.root_domain in (
12
+
"spectrumemails.com", // primary communication domain
13
+
"spectrum.com", // see some sales prospecting from various spectrum.com subdomains
14
+
"beagleinsight.com" // survey vendor
15
+
)
16
+
and headers.auth_summary.dmarc.pass
17
+
)
18
+
// Make sure this is related to Charter -- exclude other use of 'spectrum'
19
+
and regex.icontains(body.current_thread.text, 'Charter')
0 commit comments