Skip to content

Commit

Permalink
Sync from PR#2144
Browse files Browse the repository at this point in the history
Create impersonation_schwab.yml by @morriscode
#2144
Source SHA de40d45
Triggered by @morriscode
  • Loading branch information
Sublime Rule Testing Bot committed Nov 25, 2024
1 parent 9d81536 commit 4563265
Showing 1 changed file with 13 additions and 23 deletions.
36 changes: 13 additions & 23 deletions detection-rules/impersonation_schwab.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,36 +26,26 @@ source: |
)
// and the sender is not in org_domains or from charles shwab domains and passes auth
and (
(
(
sender.email.domain.root_domain in $org_domains
or sender.email.domain.root_domain in (
"schwab.com",
"aboutschwab.com.",
"schwabmoneywise.com"
)
)
and not headers.auth_summary.dmarc.pass
)
and not (
sender.email.domain.root_domain in $org_domains
or (
sender.email.domain.root_domain not in $org_domains
and sender.email.domain.root_domain not in (
sender.email.domain.root_domain in (
"schwab.com",
"aboutschwab.com.",
"schwabmoneywise.com"
)
and headers.auth_summary.dmarc.pass
)
)
// and the sender is not from high trust sender root domains
and (
(
sender.email.domain.root_domain in $high_trust_sender_root_domains
and not headers.auth_summary.dmarc.pass
// and the sender is not from high trust sender root domains
and (
(
sender.email.domain.root_domain in $high_trust_sender_root_domains
and not headers.auth_summary.dmarc.pass
)
or sender.email.domain.root_domain not in $high_trust_sender_root_domains
)
or sender.email.domain.root_domain not in $high_trust_sender_root_domains
)
and not profile.by_sender().solicited
and not profile.by_sender().solicited
attack_types:
- "Credential Phishing"
tactics_and_techniques:
Expand All @@ -67,4 +57,4 @@ detection_methods:
- "Sender analysis"
id: "7abde595-bd69-5b79-8031-2c5a12b1767e"
testing_pr: 2144
testing_sha: cd90828b69a82928a91ef98eeebb0442d480ba11
testing_sha: de40d455580091824df1a9daf051dbfa2584ca0d

0 comments on commit 4563265

Please sign in to comment.