You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: "Detects when an EML file is attached that contains an encrypted ZIP file. The encryption can be used to bypass security scanning and deliver malicious content."
3
+
type: "rule"
4
+
severity: "low"
5
+
source: |
6
+
type.inbound
7
+
// attached EML
8
+
and any(filter(attachments, .content_type == "message/rfc822"),
9
+
// Attached EML contains a ZIP file
10
+
any(filter(file.parse_eml(.).attachments,
11
+
.file_type == "zip" or .file_extension == "zip"
12
+
),
13
+
// ZIP file is encrypted
14
+
any(file.explode(.),
15
+
any(.flavors.yara, . == 'encrypted_zip') or .scan.zip.encrypted
0 commit comments