Skip to content
Merged
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
23 changes: 23 additions & 0 deletions detection-rules/attachment_pdf_link_dubsh.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: "Attachment: PDF with dub.sh shortened link"
description: "Catches messages carrying PDF attachments that embed links shortened through the dub.sh service. The lures vary widely, from fake 'password protected document' or e-signature notifications to business submission and proposal requests, but each relies on a PDF containing a shortened link to obscure the true destination and evade URL-based filtering."
type: "rule"
severity: "medium"
source: |
type.inbound
and any(attachments,
.file_type == "pdf"
and any(file.explode(.),
any(.scan.url.urls, .domain.root_domain == "dub.sh")
)
)
attack_types:
- "Credential Phishing"
- "BEC/Fraud"
tactics_and_techniques:
- "PDF"
- "Social engineering"
- "Evasion"
detection_methods:
- "File analysis"
- "URL analysis"
id: "36c01114-5437-5417-83ca-e8bdcd0c4488"