Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions detection-rules/body_spouse_fake_call.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: "Body: Fake conversation with spouse mention and video call request"
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."
type: "rule"
severity: "medium"
source: |
type.inbound
and length(body.previous_threads) >= 2
and strings.icontains(body.current_thread.text, "call")
and (
strings.icontains(body.current_thread.text, "wife and i")
or strings.icontains(body.current_thread.text, "husband and i")
)
and (
strings.icontains(body.current_thread.text, "zoom")
or strings.icontains(body.current_thread.text, "google meet")
)
and length(body.current_thread.text) < 1400

attack_types:
- "BEC/Fraud"
- "Malware/Ransomware"
tactics_and_techniques:
- "Social engineering"
detection_methods:
- "Content analysis"
id: "bd23f3b2-a1e5-5a7c-ab0c-c15d4c4458f5"
Loading