Skip to content

Commit d0dcc10

Browse files
authored
Update impersonation_docusign.yml
1 parent 99c14f6 commit d0dcc10

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

detection-rules/impersonation_docusign.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -392,14 +392,13 @@ source: |
392392
)
393393
)
394394
395-
// negate highly trusted sender domains unless they fail DMARC authentication
396-
and (
397-
coalesce(sender.email.domain.root_domain in $high_trust_sender_root_domains
398-
and not headers.auth_summary.dmarc.pass,
399-
false
400-
)
401-
or sender.email.domain.root_domain not in $high_trust_sender_root_domains
395+
396+
// negate highly trusted sender domains if they pass DMARC authentication
397+
and not (
398+
sender.email.domain.root_domain in $high_trust_sender_root_domains
399+
and coalesce(headers.auth_summary.dmarc.pass, false)
402400
)
401+
403402
// negation for messages traversing docusign.net
404403
// happens with custom sender domains
405404
and not (

0 commit comments

Comments
 (0)