We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1be97c commit ba5f6d3Copy full SHA for ba5f6d3
detection-rules/attachment_ics_meeting_invite.yml
@@ -9,14 +9,8 @@ source: |
9
.file_extension in~ ('ics')
10
or .content_type in ("application/ics", "text/calendar")
11
),
12
- (
13
- regex.contains(.file_name, "meeting_[a-zA-Z]{5}")
14
- or regex.contains(.file_name, "meeting_[a-zA-Z0-9]{5}")
15
- )
16
- and not (
17
- regex.contains(.file_name, "meeting_invit[eation]")
18
- or regex.contains(.file_name, "meeting_request")
19
+ regex.icontains(.file_name, 'meeting_[a-zA-Z0-9]{5}\.')
+ and not strings.contains(.file_name, "meeting_invite")
20
)
21
attack_types:
22
- "BEC/Fraud"
0 commit comments