Skip to content

Commit 86f98e3

Browse files
[PR #3067] changed rule: Attachment: WinRAR CVE-2025-8088 exploitation
1 parent 03c02a7 commit 86f98e3

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: "Attachment: WinRAR CVE-2025-8088 exploitation"
2+
description: |
3+
Detects attempts to exploit CVE-2025-8088 via attached RAR files
4+
type: "rule"
5+
severity: "high"
6+
source: |
7+
type.inbound
8+
and any(attachments,
9+
// its a rar file
10+
(
11+
.content_type == "application/x-rar-compressed"
12+
or .file_extension == "rar"
13+
or .file_type == "rar"
14+
)
15+
// less than 10 meg
16+
and .size < 10000000
17+
// explode it
18+
and any(file.explode(.),
19+
// contains a yara match
20+
any(.scan.yara.matches, .name == "WinRAR_CVE_2025_8088")
21+
)
22+
)
23+
attack_types:
24+
- "Malware/Ransomware"
25+
tactics_and_techniques:
26+
- "Exploit"
27+
- "Evasion"
28+
detection_methods:
29+
- "Archive analysis"
30+
- "File analysis"
31+
- "YARA"
32+
id: "d6b2b8df-24c1-57a4-a467-be82b5e4cbb2"
33+
og_id: "33b3a82b-0721-53b8-a5f2-d28e3d791b60"
34+
testing_pr: 3067
35+
testing_sha: e46845f9a61f9e0062aa72e04e44a175e4fcea62

0 commit comments

Comments
 (0)