Skip to content

Commit 7b63e41

Browse files
zoomequipdID Generator
andauthored
Create attachment_ics_non-gregorian.yml (#3444)
Co-authored-by: ID Generator <hello@sublimesecurity.com>
1 parent 2ab6378 commit 7b63e41

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: "Attachment: ICS file with non-Gregorian calendar scale"
2+
description: "Detects ICS calendar attachments that use a non-standard calendar scale other than GREGORIAN, which may indicate malicious calendar files attempting to exploit calendar parsing vulnerabilities or bypass security filters."
3+
type: "rule"
4+
severity: "medium"
5+
source: |
6+
type.inbound
7+
and any(attachments,
8+
(
9+
.file_extension in~ ('ics')
10+
or .content_type in ("application/ics", "text/calendar")
11+
)
12+
and not strings.icontains(beta.file.parse_ics(.).scale, 'GREGORIAN')
13+
)
14+
attack_types:
15+
- "Credential Phishing"
16+
tactics_and_techniques:
17+
- "Evasion"
18+
detection_methods:
19+
- "File analysis"
20+
- "Content analysis"
21+
id: "9315bbf5-c710-5ead-8a8e-5c7f8fb118dc"

0 commit comments

Comments
 (0)