Skip to content

Commit 02c0baa

Browse files
[Test Rules] [PR #4317] added rule: Body: Fake conversation with spouse mention and video call request
1 parent 1446c20 commit 02c0baa

1 file changed

Lines changed: 61 additions & 0 deletions

File tree

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
name: "Body: Fake conversation with spouse mention and video call request"
2+
description: "Detects messages with fake thread history containing references to a spouse combined with requests for video calls using platforms like Zoom or Google Meet."
3+
type: "rule"
4+
severity: "medium"
5+
source: |
6+
type.inbound
7+
and length(body.previous_threads) >= 3
8+
and (
9+
(
10+
strings.icontains(body.previous_threads[length(body.previous_threads) - 2].text,
11+
"wife and i"
12+
)
13+
or strings.icontains(body.previous_threads[length(body.previous_threads) - 2].text,
14+
"husband and i"
15+
)
16+
)
17+
and strings.icontains(body.previous_threads[length(body.previous_threads) - 2].text,
18+
"call"
19+
)
20+
and (
21+
strings.icontains(body.previous_threads[length(body.previous_threads) - 2].text,
22+
"zoom"
23+
)
24+
or strings.icontains(body.previous_threads[length(body.previous_threads) - 2].text,
25+
"google meet"
26+
)
27+
)
28+
)
29+
or (
30+
(
31+
strings.icontains(body.previous_threads[length(body.previous_threads) - 3].text,
32+
"wife and i"
33+
)
34+
or strings.icontains(body.previous_threads[length(body.previous_threads) - 3].text,
35+
"husband and i"
36+
)
37+
)
38+
and strings.icontains(body.previous_threads[length(body.previous_threads) - 3].text,
39+
"call"
40+
)
41+
and (
42+
strings.icontains(body.previous_threads[length(body.previous_threads) - 3].text,
43+
"zoom"
44+
)
45+
or strings.icontains(body.previous_threads[length(body.previous_threads) - 3].text,
46+
"google meet"
47+
)
48+
)
49+
)
50+
51+
attack_types:
52+
- "BEC/Fraud"
53+
- "Malware/Ransomware"
54+
tactics_and_techniques:
55+
- "Social engineering"
56+
detection_methods:
57+
- "Content analysis"
58+
id: "5b7a2e34-fda0-5aa7-ac6a-2bdd2c91dc05"
59+
og_id: "bd23f3b2-a1e5-5a7c-ab0c-c15d4c4458f5"
60+
testing_pr: 4317
61+
testing_sha: e65f9eecf2771cc426769431909a29ade310ee85

0 commit comments

Comments
 (0)