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: "Reconnaissance: Short generic greeting message"
2
+
description: |
3
+
Detects potential reconnaissance messages with very short, generic content like 'Hi' or 'Hello' from external senders. These messages are often used to validate email addresses and test deliverability before launching larger attacks.
4
+
type: "rule"
5
+
severity: "medium"
6
+
source: |
7
+
type.inbound
8
+
// detect generic greetings
9
+
and length(body.current_thread.text) <= 20
10
+
and length(subject.base) <= 15
11
+
// exclude messages with previous thread context (forwards/replies)
0 commit comments