We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7815225 commit 5109cb1Copy full SHA for 5109cb1
1 file changed
detection-rules/4367_link_credential_phishing_cloud_service.yml
@@ -26,6 +26,11 @@ source: |
26
// check for SPF or DMARC passed
27
and (headers.auth_summary.spf.pass or headers.auth_summary.dmarc.pass)
28
)
29
+ // negate highly trusted sender domains unless they fail DMARC authentication
30
+ and not (
31
+ sender.email.domain.root_domain in $high_trust_sender_root_domains
32
+ and coalesce(headers.auth_summary.dmarc.pass, false)
33
+ )
34
attack_types:
35
- "Credential Phishing"
36
tactics_and_techniques:
@@ -38,4 +43,4 @@ detection_methods:
38
43
id: "a096a1cc-6777-55c3-92be-b45aa1b58513"
39
44
og_id: "5f1395a6-e2ae-5175-ad29-5f35111219fd"
40
45
testing_pr: 4367
41
-testing_sha: 7bd6db9f21f3ed6be98fc084b3baf4185550c36a
46
+testing_sha: d3a9bf4f1d63bffaa009b7e09c729bb7b690621e
0 commit comments