Skip to content

Commit

Permalink
Update embedded PDF JS (#1065)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkamdjou authored Nov 30, 2023
1 parent e0660c7 commit 1a97173
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions detection-rules/attachment_pdf_embedded_js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,33 @@ source: |
)
)
)
and (
(
profile.by_sender().prevalence in ("new", "outlier")
and not profile.by_sender().solicited
)
or (
profile.by_sender().any_messages_malicious_or_spam
and not profile.by_sender().any_false_positives
)
)
// negate highly trusted sender domains unless they fail DMARC authentication
and (
(
sender.email.domain.root_domain in $high_trust_sender_root_domains
and (
any(distinct(headers.hops, .authentication_results.dmarc is not null),
strings.ilike(.authentication_results.dmarc, "*fail")
)
)
)
or sender.email.domain.root_domain not in $high_trust_sender_root_domains
)
tags:
- "Attack surface reduction"
attack_types:
- "Malware/Ransomware"
tactics_and_techniques:
Expand Down

0 comments on commit 1a97173

Please sign in to comment.