Skip to content

Commit

Permalink
Update credential_phishing_corporate_services_impersonation.yml (#2390)
Browse files Browse the repository at this point in the history
  • Loading branch information
aidenmitchell authored Feb 7, 2025
1 parent 280220a commit c33fba2
Showing 1 changed file with 10 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,20 @@ source: |
"HR (new|vue|view|tech admin|global)"
)
)
// or assessment report language found in body
or (
regex.icontains(body.current_thread.text, '20\d{2}(?:[[:punct:]](?:20)?\d{2})? (?:\w+ )?assessment report')
regex.icontains(body.current_thread.text,
'20\d{2}(?:[[:punct:]](?:20)?\d{2})? (?:\w+ )?assessment report'
)
)
// or HR department language found in body via NLU
or any(ml.nlu_classifier(body.current_thread.text).entities,
.name == "org" and regex.icontains(.text, '\bhr\b', 'human resources')
)
)
// suspicious display_text
and (
any(body.links,
Expand Down

0 comments on commit c33fba2

Please sign in to comment.