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 95b2c74
Triggered by @zoomequipd
  • Loading branch information
Sublime Rule Testing Bot committed Nov 25, 2024
1 parent 977c0e2 commit 7847af4
Showing 1 changed file with 20 additions and 13 deletions.
33 changes: 20 additions & 13 deletions detection-rules/impersonation_schwab.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,23 +29,30 @@ source: |
and not (
sender.email.domain.root_domain in $org_domains
or (
sender.email.domain.root_domain in (
"schwab.com",
"aboutschwab.com.",
"schwabmoneywise.com"
(
sender.email.domain.root_domain in (
"schwab.com",
"aboutschwab.com.",
"schwabmoneywise.com",
"schwabe.com", // law firm with name
"proxyvote.com", // sends shareholder voting information with subject of company name
"boheme-schwabing.de", // steakhouse
"lesschwab.com", // tire sales
)
or sender.email.domain.domain in ("schwabebooks.ccsend.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
)
or sender.email.domain.root_domain not in $high_trust_sender_root_domains
// 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 not profile.by_sender().solicited
or sender.email.domain.root_domain not in $high_trust_sender_root_domains
)
and not profile.by_sender().solicited
attack_types:
- "Credential Phishing"
tactics_and_techniques:
Expand All @@ -57,4 +64,4 @@ detection_methods:
- "Sender analysis"
id: "7abde595-bd69-5b79-8031-2c5a12b1767e"
testing_pr: 2144
testing_sha: de40d455580091824df1a9daf051dbfa2584ca0d
testing_sha: 95b2c74fea4a1f80239cc68b5ca346887d645755

0 comments on commit 7847af4

Please sign in to comment.