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: "Detects messages where the sender is impersonating GoDaddy through display name manipulation or lookalike domains, while not being legitimately authenticated from GoDaddy's infrastructure."
3
+
type: "rule"
4
+
severity: "medium"
5
+
source: |
6
+
type.inbound
7
+
and (
8
+
regex.icontains(sender.display_name, 'godaddy')
9
+
or strings.ilike(sender.display_name, "*godaddy*")
10
+
or strings.ilevenshtein(sender.display_name, 'godaddy') <= 1
11
+
or strings.ilike(sender.email.domain.domain, '*godaddy*')
12
+
)
13
+
and not (
14
+
sender.email.domain.root_domain in ("godaddy.com", "registry.godaddy")
0 commit comments