Skip to content

Commit 4fa2f9c

Browse files
[PR #3050] modified rule: Brand Impersonation: Salesforce
1 parent df61a58 commit 4fa2f9c

File tree

1 file changed

+7
-12
lines changed

1 file changed

+7
-12
lines changed

detection-rules/3050_brand_impersonation_salesforce.yml

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,12 @@ source: |
1212
)
1313
and not (
1414
(
15-
// legitimate salesforce domains
15+
// legitimate domains
1616
sender.email.domain.root_domain in (
1717
"salesforce.com",
1818
"salesforceventures.com",
19-
"tangocard.com" //https://www.tangocard.com/salesforce-partnership
19+
"tangocard.com", //https://www.tangocard.com/salesforce-partnership
20+
"elevatesalesforce.com" // unrelated but name in domain
2021
)
2122
and headers.auth_summary.dmarc.pass
2223
)
@@ -31,15 +32,10 @@ source: |
3132
// email from own domain with salesforce notification
3233
or (
3334
sender.email.domain.root_domain in $org_domains
34-
and headers.auth_summary.dmarc.pass
35-
)
36-
)
37-
and (
38-
not (
39-
coalesce(headers.auth_summary.dmarc.pass, false)
40-
and not profile.by_sender().solicited
35+
and not headers.auth_summary.dmarc.pass
4136
)
4237
)
38+
and not profile.by_sender().solicited
4339
and not any(body.links, .href_url.domain.root_domain == "salesforce.com")
4440
// negate highly trusted sender domains unless they fail DMARC authentication
4541
and (
@@ -48,8 +44,7 @@ source: |
4844
and not headers.auth_summary.dmarc.pass
4945
)
5046
or sender.email.domain.root_domain not in $high_trust_sender_root_domains
51-
)
52-
47+
)
5348
5449
attack_types:
5550
- "Credential Phishing"
@@ -64,4 +59,4 @@ detection_methods:
6459
id: "c5f0e666-81f0-5d17-a470-12ab75113631"
6560
og_id: "736dfb87-1f99-5cdb-aefc-392257376f3d"
6661
testing_pr: 3050
67-
testing_sha: 036043c2825d5b375dc3917cddf13913200cdb52
62+
testing_sha: ff724dc18f69435fa4f8de270bafd0bf9fad3f2b

0 commit comments

Comments
 (0)