Skip to content

Commit 085a8df

Browse files
[Test Rules] [PR #4319] modified rule: Brand impersonation: Robinhood
1 parent db918b1 commit 085a8df

1 file changed

Lines changed: 18 additions & 1 deletion

File tree

detection-rules/4319_brand_impersonation_robinhood.yml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,20 @@ source: |
6767
)
6868
or length(headers.references) == 0
6969
)
70+
and (
71+
(
72+
profile.by_sender().prevalence != "common"
73+
and not profile.by_sender().solicited
74+
)
75+
)
7076
// negate newsletters and webinars
7177
and not any(ml.nlu_classifier(body.current_thread.text).topics,
7278
.name in ("Newsletters and Digests", "Events and Webinars")
7379
and .confidence == "high"
7480
)
81+
and not any(ml.nlu_classifier(body.current_thread.text).intents,
82+
.name == "benign" and .confidence == "high"
83+
)
7584
and not (
7685
sender.email.domain.root_domain in (
7786
"robinhood.com",
@@ -83,6 +92,14 @@ source: |
8392
and coalesce(headers.auth_summary.dmarc.pass, false)
8493
)
8594
)
95+
// negate highly trusted sender domains unless they fail DMARC authentication
96+
and (
97+
(
98+
sender.email.domain.root_domain in $high_trust_sender_root_domains
99+
and not headers.auth_summary.dmarc.pass
100+
)
101+
or sender.email.domain.root_domain not in $high_trust_sender_root_domains
102+
)
86103
87104
attack_types:
88105
- "Credential Phishing"
@@ -97,4 +114,4 @@ detection_methods:
97114
id: "3bd8298b-379b-5214-b94d-d2237ed502ad"
98115
og_id: "7c8eca19-63ac-5cd3-a92b-4fb34b526683"
99116
testing_pr: 4319
100-
testing_sha: 85b66a14415a44d94beb866e34ca8cfa17da5821
117+
testing_sha: e21564444b149aeb12c574c68d4d5c1cd42c1b0d

0 commit comments

Comments
 (0)