Skip to content

Commit b2edba4

Browse files
[PR #3094] changed rule: Google Classroom Spoofing With WhatsApp Contact Information
1 parent 3688c7f commit b2edba4

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: "Google Classroom Spoofing With WhatsApp Contact Information"
2+
description: "Detects messages impersonating Google Classroom notifications that contain WhatsApp contact information, likely attempting to redirect victims to out-of-band communication channels for social engineering attacks."
3+
type: "rule"
4+
severity: "medium"
5+
source: |
6+
type.inbound
7+
and sender.email.email == "[email protected]"
8+
and (
9+
regex.icontains(body.current_thread.text, '\bWhatsapp:?.[:0-9+ ]{7,20}\b')
10+
or (
11+
strings.icontains(body.current_thread.text, "WhatsApp")
12+
and strings.icontains(body.current_thread.text, "invited")
13+
)
14+
)
15+
16+
attack_types:
17+
- "Callback Phishing"
18+
- "BEC/Fraud"
19+
tactics_and_techniques:
20+
- "Impersonation: Brand"
21+
- "Out of band pivot"
22+
- "Social engineering"
23+
detection_methods:
24+
- "Content analysis"
25+
- "Header analysis"
26+
- "Sender analysis"
27+
id: "8e931efb-2d86-58b6-ae0e-2a7c1fd11c97"
28+
og_id: "e9c39e92-4817-535a-91f9-13ad68885ff9"
29+
testing_pr: 3094
30+
testing_sha: 3b3d41b30bbd4df2faa70de2dc92205a0585dd20

0 commit comments

Comments
 (0)