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
name: "BEC: Banking verification certificate with payment hold request"
2
+
description: "Detects business email compromise targeting financial operations using banking certificates or verification documents combined with payment hold instructions. The rule identifies suspicious attachments with banking-related filenames, body content requesting payment delays or system updates for banking details, and various sender reputation indicators including uncommon TLDs, mismatched domains, or potential thread hijacking patterns."
3
+
type: "rule"
4
+
severity: "high"
5
+
source: |
6
+
type.inbound
7
+
and (
8
+
(
9
+
length(attachments) > 0
10
+
and (
11
+
any(attachments,
12
+
(
13
+
strings.ilike(.file_name, "*bank*certificate*")
14
+
or strings.ilike(.file_name, "*bank*confirmation*")
15
+
or strings.ilike(.file_name, "*bank*ownership*")
16
+
or strings.ilike(.file_name, "*verification*certificate*")
17
+
or strings.ilike(.file_name, "*ownership*certificate*")
18
+
or strings.ilike(.file_name, "*bank*verification*")
19
+
or strings.ilike(.file_name, "*banking*certificate*")
20
+
)
21
+
and .file_type in ("pdf", "doc", "docx", "jpg", "png")
0 commit comments