VIP impersonation with urgent request (untrusted sender)
Sender is using a display name that matches the display name of someone in your $org_vips list.
Detects potential Business Email Compromise (BEC) attacks by analyzing text within email body from untrusted senders.
Sublime rule (View on GitHub)
1name: "VIP impersonation with urgent request (untrusted sender)"
2description: |
3 Sender is using a display name that matches the display name of someone in your $org_vips list.
4
5 Detects potential Business Email Compromise (BEC) attacks by analyzing text within email body from untrusted senders.
6type: "rule"
7severity: "high"
8source: |
9 type.inbound
10 and any($org_vips, .display_name =~ sender.display_name)
11 and (
12 any(ml.nlu_classifier(body.current_thread.text).intents,
13 .name == "bec" and .confidence in ("medium", "high")
14 )
15 or (
16 any(ml.nlu_classifier(body.current_thread.text).entities,
17 .name == "urgency"
18 )
19 and any(ml.nlu_classifier(body.current_thread.text).entities,
20 .name == "request"
21 )
22 )
23 )
24 and (
25 (
26 profile.by_sender().prevalence != "common"
27 and not profile.by_sender().solicited
28 )
29 or (
30 profile.by_sender().any_messages_malicious_or_spam
31 and not profile.by_sender().any_false_positives
32 )
33 )
34
35 // negate highly trusted sender domains unless they fail DMARC authentication
36 and (
37 (
38 sender.email.domain.root_domain in $high_trust_sender_root_domains
39 and not headers.auth_summary.dmarc.pass
40 )
41 or sender.email.domain.root_domain not in $high_trust_sender_root_domains
42 )
43
44 and not profile.by_sender().any_false_positives
45
46attack_types:
47 - "BEC/Fraud"
48tactics_and_techniques:
49 - "Impersonation: VIP"
50 - "Social engineering"
51detection_methods:
52 - "Content analysis"
53 - "Content analysis"
54 - "Natural Language Understanding"
55 - "Sender analysis"
56id: "0dd1fa60-6e89-5f70-81a1-6b64eef0e428"