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
description: "This rule detects messages claiming to have identified errors on a website. The messages typically offer to send pricing or information upon request."
3
+
type: "rule"
4
+
severity: "low"
5
+
source: |
6
+
type.inbound
7
+
and (
8
+
sender.email.email not in $recipient_emails
9
+
or not profile.by_sender().solicited
10
+
)
11
+
and 1 of (
12
+
// Single thread message groups
13
+
(
14
+
length(attachments) == 0
15
+
and length(body.links) == 0
16
+
and length(body.previous_threads) == 0
17
+
and 20 < length(body.current_thread.text) < 500
18
+
and regex.icontains(body.current_thread.text, "screenshot|error list|plan")
19
+
and regex.icontains(body.current_thread.text, ".*(hi|hello|hey)")
20
+
and regex.icontains(body.current_thread.text, ".*(error|report|issues)")
21
+
and regex.icontains(body.current_thread.text, ".*(site|website)")
22
+
and regex.icontains(subject.subject,
23
+
".*(proposal|cost|report|error|audit|screenshot)"
24
+
)
25
+
),
26
+
// Single thread message groups but with 1 unsubscribe link or link is recipient
0 commit comments