File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments