Skip to content

Commit

Permalink
Update sender_ad_distinguished_name.yml (#2069)
Browse files Browse the repository at this point in the history
  • Loading branch information
aidenmitchell authored Oct 30, 2024
1 parent ea8668f commit d138935
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions detection-rules/sender_ad_distinguished_name.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,12 @@ description: |
type: "rule"
severity: "medium"
source: |
type.inbound
and regex.icontains(sender.display_name, '\b(EX|LABS|OU|CN|EXCHANGE)(=|/)')
and sender.email.domain.root_domain not in $org_domains
type.inbound
and (
regex.icontains(sender.display_name, '\b(EX|LABS|OU|CN|EXCHANGE)(=|/)')
or strings.icontains(sender.display_name, "/O=EXCHANGELABS")
)
and sender.email.domain.root_domain not in $org_domains
tags:
- "Suspicious sender"
attack_types:
Expand Down

0 comments on commit d138935

Please sign in to comment.