Skip to content

Commit

Permalink
Update callback_phishing_nlu_body_or_attachments.yml (#876)
Browse files Browse the repository at this point in the history
Co-authored-by: Bobby Filar <[email protected]>
  • Loading branch information
morriscode and bfilar authored Oct 26, 2023
1 parent f5b0981 commit 454e976
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions detection-rules/callback_phishing_nlu_body_or_attachments.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,11 @@ source: |
any(attachments,
(.file_type in $file_types_images or .file_type == "pdf")
and any(file.explode(.),
// exclude images taken with mobile cameras
// exclude images taken with mobile cameras and screenshots from android
not any(.scan.exiftool.fields,
.key == "Model" and strings.istarts_with(.value, "Iphone")
.key == "Model"
or .key == "Software" and strings.starts_with(.value, "Android")
)
and any(ml.nlu_classifier(.scan.ocr.raw).intents,
.name == "callback_scam" and .confidence == "high"
Expand All @@ -37,6 +38,7 @@ source: |
and not profile.by_sender().any_false_positives
)
)
attack_types:
- "Callback Phishing"
tactics_and_techniques:
Expand Down

0 comments on commit 454e976

Please sign in to comment.