Skip to content

Commit 7d0ca59

Browse files
[PR #3068] changed rule: Brand impersonation: Charter Spectrum
1 parent 86f98e3 commit 7d0ca59

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: "Brand impersonation: Charter Spectrum"
2+
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')
20+
attack_types:
21+
- "Credential Phishing"
22+
tactics_and_techniques:
23+
- "Impersonation: Brand"
24+
- "Social engineering"
25+
detection_methods:
26+
- "Content analysis"
27+
- "Header analysis"
28+
- "Sender analysis"
29+
id: "26162949-d936-5dd7-a626-6f1b3ca41dff"
30+
og_id: "f1cd01e0-3f2b-52c3-9e99-66a9726763ce"
31+
testing_pr: 3068
32+
testing_sha: c9f7632e83fd300b8e9b52d9121e1f2e0124ab92

0 commit comments

Comments
 (0)