Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions detection-rules/suspicious_request_financial.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ source: |
// suspicious sender display name
or (
regex.icontains(sender.display_name,
'Accounts? (?:Payable (?:Dep(\.|t\.?|artment)|e?Receipt)|(Co[[:punct:]]?ordinator|Admin|Manager|Payee))'
'Accounts? (?:Payable (?:Dep(\.|t\.?|artment)|e?Receipt)|(Co[[:punct:]]?ordinator|Admin|Manager|Payee))',
'(?:pay(ment|([[:punct:]]|\s?)app)|EFT|ACH|deposit|remit(tance)?|settle(ment)?) (?:noti(ce|fication)|confirm(ation)?)'
)
// sender email listed as a recipient or recipients undisclosed/null
and (
Expand All @@ -59,7 +60,8 @@ source: |
)
// non-benign nlu intent
or any(ml.nlu_classifier(body.current_thread.text).intents,
.name != "benign"
// callback phishing is outside the scope of this rule
(.name != "benign" and .name != "callback_scam")
)
)
)
Expand Down
Loading