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: "PR# 3742 - Link: Self-sent message with suspicious link containing sender identifiers"
2
+
description: "Detects messages where the sender emails themselves with a single suspicious link that contains the sender's local part or domain in the URL path and the link display text matches the subject line."
3
+
type: "rule"
4
+
severity: "medium"
5
+
source: |
6
+
type.inbound
7
+
// self sender
8
+
and (
9
+
length(recipients.to) == 1
10
+
and length(recipients.cc) == 0
11
+
and length(recipients.bcc) == 0
12
+
and sender.email.email == recipients.to[0].email.email
13
+
)
14
+
// first link is not related to the sender via sld (to account for orgs that have multiple tlds)
0 commit comments