Skip to content

Commit da7a5c5

Browse files
[Shared Samples] [PR #4619] added rule: PR# 4619 - Service abuse: Citrix ShareFile impersonation via Outlook plugin
1 parent 352e4dd commit da7a5c5

1 file changed

Lines changed: 31 additions & 0 deletions

File tree

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: "PR# 4619 - Service abuse: Citrix ShareFile impersonation via Outlook plugin"
2+
description: "Detects inbound messages with Word document attachments containing references to sharefile.com and Outlook plugin system indicators, suggesting abuse of legitimate file sharing services to deliver malicious content."
3+
type: "rule"
4+
severity: "medium"
5+
source: |
6+
type.inbound
7+
and any(attachments,
8+
.file_type in ("doc", "docx")
9+
and any(file.explode(.),
10+
strings.icontains(.scan.strings.raw, "sharefile.com")
11+
and strings.icontains(.scan.strings.raw,
12+
"src=system-email-outlookplugin-new"
13+
)
14+
)
15+
)
16+
attack_types:
17+
- "BEC/Fraud"
18+
- "Credential Phishing"
19+
tactics_and_techniques:
20+
- "Free file host"
21+
- "Social engineering"
22+
detection_methods:
23+
- "File analysis"
24+
- "Content analysis"
25+
id: "a9f43f1c-ba6d-5a32-9c77-70fd4cd877cd"
26+
tags:
27+
- created_from_open_prs
28+
- rule_status_added
29+
- pr_author_markmsublime
30+
references:
31+
- https://github.com/sublime-security/sublime-rules/pull/4619

0 commit comments

Comments
 (0)