Skip to content

Commit aa5f5ce

Browse files
[PR #3781] added rule: Headers: Fake in-reply-to with wildcard sender and missing thread context
1 parent bbfd8ce commit aa5f5ce

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: "Headers: Fake in-reply-to with wildcard sender and missing thread context"
2+
description: "Detects messages claiming to be replies with In-Reply-To headers but lacking previous thread context, sent from addresses containing multiple wildcard characters in the local part."
3+
type: "rule"
4+
severity: "high"
5+
source: |
6+
type.inbound
7+
and headers.in_reply_to is not null
8+
and not (subject.is_forward or subject.is_reply)
9+
and length(body.previous_threads) == 0
10+
and strings.count(sender.email.local_part, "*") >= 2
11+
12+
attack_types:
13+
- "BEC/Fraud"
14+
- "Credential Phishing"
15+
tactics_and_techniques:
16+
- "Evasion"
17+
- "Social engineering"
18+
- "Spoofing"
19+
detection_methods:
20+
- "Header analysis"
21+
- "Sender analysis"
22+
- "Content analysis"
23+
id: "d502cde5-d6ff-5b08-9910-ceea5dd46ed9"
24+
og_id: "89da670a-4b03-52f7-891c-48820bb2362a"
25+
testing_pr: 3781
26+
testing_sha: bc6376fffc9cc83447f0daf306959d4223c788e7

0 commit comments

Comments
 (0)