Skip to content

Commit

Permalink
add, modify, delete
Browse files Browse the repository at this point in the history
  • Loading branch information
cameron-dunn-sublime committed Sep 28, 2023
1 parent 9062c54 commit 47971f0
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 25 deletions.
42 changes: 42 additions & 0 deletions detection-rules/attachment_adobe_image_lure_fts_new.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: "Attachment: Adobe image lure with suspicious link from first time sender"
description: "Detects Adobe phishing messages with an Adobe logo attached, with suspicious link language from a first-time sender."
type: "rule"
severity: "medium"
source: |
type.inbound
and length(filter(attachments, .file_type not in $file_types_images)) == 0
and length(body.links) > 0
and all(body.links, .display_text is null)
and any(attachments,
any(ml.logo_detect(.).brands, .name == "Adobe" and .confidence in ("high"))
and any(file.explode(.),
strings.ilike(.scan.ocr.raw,
"*review*",
"*sign*",
"*view*",
"*completed document*",
"*open agreement*"
)
)
)
and (
(
sender.email.domain.root_domain in $free_email_providers
and sender.email.email not in $sender_emails
)
or (
sender.email.domain.root_domain not in $free_email_providers
and sender.email.domain.domain not in $sender_domains
)
)
attack_types:
- "Malware/Ransomware"
tactics_and_techniques:
- "Image as content"
- "Impersonation: Brand"
detection_methods:
- "Content analysis"
- "Computer Vision"
- "Optical Character Recognition"
- "Sender analysis"
- "URL analysis"
1 change: 1 addition & 0 deletions detection-rules/attachment_any_html_unsolicited.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,5 @@ detection_methods:
- "File analysis"
- "HTML analysis"
- "Sender analysis"
- "Temp"
id: "ef36763f-917d-5338-b1ac-84047334dce8"
25 changes: 0 additions & 25 deletions detection-rules/attachment_archive_with_chm.yml

This file was deleted.

0 comments on commit 47971f0

Please sign in to comment.