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
26 changes: 26 additions & 0 deletions detection-rules/attachment_xls_legal_disclaimer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: "Attachment: XLS with legal confidentiality disclaimer"
description: "Detects inbound emails with XLS attachments containing a specific legal confidentiality disclaimer string commonly found in corporate email signatures. This pattern may indicate a malicious spreadsheet crafted to appear as a legitimate forwarded business communication, lending false credibility to the attachment."
type: "rule"
severity: "medium"
source: |
type.inbound
and any(attachments,
(.file_extension in~ ("xls"))
and any(file.explode(.),
any(.scan.strings.strings,
strings.contains(.,
'The information contained in this transmission and its attachments (an "e-communication") are intended solely for the use of the intended recipient(s) and may contain information that is privileged, confidential, proprietary and/or otherwise protected by work product immunity or other legal rules.'
)
)
)
)
attack_types:
- "Malware/Ransomware"
- "BEC/Fraud"
tactics_and_techniques:
- "Social engineering"
- "Macros"
detection_methods:
- "File analysis"
- "Content analysis"
id: "f31995dd-f922-5954-a077-e74c3a3bc287"
Loading