Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions detection-rules/impersonation_sharepoint_fake_file_share.yml
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,10 @@ source: |
strings.parse_url(strings.concat("https://", .)).domain.root_domain == "sharepoint.com"
)
)
and sender.email.domain.root_domain not in $org_domains
and not (
sender.email.domain.root_domain in $org_domains
and coalesce(headers.auth_summary.dmarc.pass, false)
)
and sender.email.domain.root_domain not in (
"bing.com",
"microsoft.com",
Expand Down Expand Up @@ -390,7 +393,11 @@ source: |
)
)
)
and not profile.by_sender().any_messages_benign
and not (
profile.by_sender().any_messages_benign
and coalesce(headers.auth_summary.dmarc.pass, false)
)

attack_types:
- "Credential Phishing"
- "Malware/Ransomware"
Expand Down
Loading