Skip to content

Commit c4ff30b

Browse files
[PR sublime-security#3756] added rule: PR# 3756 - Attachment: ICS file with meeting prefix
1 parent 4b783bc commit c4ff30b

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: "PR# 3756 - Attachment: ICS file with meeting prefix"
2+
description: "Detects incoming messages with a single ICS calendar file attachment that has a filename starting with 'meeting_'."
3+
type: "rule"
4+
severity: "high"
5+
source: |
6+
type.inbound
7+
and length(attachments) == 1
8+
and any(attachments,
9+
.file_extension == "ics"
10+
and regex.match(.file_name, '(meeting_)[-azA-z0-9]{5}\.ics')
11+
)
12+
attack_types:
13+
- "BEC/Fraud"
14+
- "Credential Phishing"
15+
tactics_and_techniques:
16+
- "Social engineering"
17+
detection_methods:
18+
- "File analysis"
19+
- "Header analysis"
20+
id: "5800490c-1a6f-5435-b593-a505507cca09"
21+
tags:
22+
- created_from_open_prs
23+
- rule_status_added
24+
- pr_author_MSAdministrator
25+
references:
26+
- https://github.com/sublime-security/sublime-rules/pull/3756

0 commit comments

Comments
 (0)