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 inbound messages with short or no text content containing an attachment that exhibit callback scam characteristics, sent from untrusted domains."
3
+
type: "rule"
4
+
severity: "medium"
5
+
source: |
6
+
type.inbound
7
+
and (body.current_thread.text is null or length(body.current_thread.text) < 500)
8
+
and any(attachments,
9
+
(.file_extension in~ ("ppt", "pptx"))
10
+
and (
11
+
any(file.explode(.),
12
+
any(ml.nlu_classifier(.scan.strings.raw).intents,
13
+
.name == "callback_scam" and .confidence != "low"
14
+
)
15
+
)
16
+
)
17
+
)
18
+
and not sender.email.domain.root_domain in $high_trust_sender_root_domains
0 commit comments