You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
0 commit comments