-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9062c54
commit 47971f0
Showing
3 changed files
with
43 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.