Skip to content

Commit 51cf6ed

Browse files
[Shared Samples] [PR #4367] modified rule: PR# 4367 - Link: Cloud service with credential theft language
1 parent 283e0de commit 51cf6ed

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

detection-rules/4367_link_credential_phishing_cloud_service.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,12 @@ source: |
2020
and all(body.links,
2121
.href_url.domain.root_domain != sender.email.domain.root_domain
2222
)
23-
23+
// negate legit cloud companies
24+
and not (
25+
sender.email.domain.root_domain in ("cloud-cme.com", "cloudcounting.online")
26+
// check for SPF or DMARC passed
27+
and (headers.auth_summary.spf.pass or headers.auth_summary.dmarc.pass)
28+
)
2429
attack_types:
2530
- "Credential Phishing"
2631
tactics_and_techniques:

0 commit comments

Comments
 (0)