Skip to content

Commit

Permalink
Updating Rule: attachment_docusign_image_suspicious_links.yml (#761)
Browse files Browse the repository at this point in the history
Co-authored-by: Sam Scholten <[email protected]>
  • Loading branch information
aidenmitchell and morriscode authored Oct 3, 2023
1 parent 1ee74ae commit 254c6cb
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions detection-rules/attachment_docusign_image_suspicious_links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,23 @@ source: |
)
and (
(
sender.email.domain.root_domain in $free_email_providers
and sender.email.email not in $sender_emails
(
sender.email.domain.root_domain in $free_email_providers
and sender.email.email not in $sender_emails
)
or (
sender.email.domain.root_domain not in $free_email_providers
and sender.email.domain.domain not in $sender_domains
)
)
or (
sender.email.domain.root_domain not in $free_email_providers
and sender.email.domain.domain not in $sender_domains
sender.email.email in $sender_emails
and any(distinct(headers.hops, .received_spf.verdict is not null),
regex.icontains(.received_spf.verdict, "fail|error")
or any(distinct(headers.hops, .authentication_results.dmarc is not null),
strings.ilike(.authentication_results.dmarc, "*fail")
)
)
)
)
attack_types:
Expand Down

0 comments on commit 254c6cb

Please sign in to comment.