Skip to content

Commit

Permalink
Update impersonation_vanta.yml (#935)
Browse files Browse the repository at this point in the history
Co-authored-by: Josh Kamdjou <[email protected]>
  • Loading branch information
morriscode and jkamdjou authored Nov 7, 2023
1 parent 4167200 commit e6df7ff
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions detection-rules/impersonation_vanta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ source: |
type.inbound
and (
regex.imatch(sender.display_name, '\bvanta\b')
or strings.ilike(sender.email.local_part, '*vanta*')
or regex.imatch(sender.email.local_part, '(\b)vanta|vanta(\b)')
or strings.ilevenshtein(sender.email.domain.sld, 'vanta') <= 1
)
and not (
Expand All @@ -19,7 +19,7 @@ source: |
)
and sender.email.domain.root_domain in $free_email_providers
and sender.email.email not in $sender_emails
// negate highly trusted sender domains unless they fail DMARC authentication
and
(
Expand All @@ -34,6 +34,7 @@ source: |
or sender.email.domain.root_domain not in $high_trust_sender_root_domains
)
attack_types:
- "Credential Phishing"
tactics_and_techniques:
Expand Down

0 comments on commit e6df7ff

Please sign in to comment.