File tree 3 files changed +16
-6
lines changed
3 files changed +16
-6
lines changed Original file line number Diff line number Diff line change @@ -19,9 +19,10 @@ rule APT_MAL_RU_WIN_Snake_Malware_May23_1 {
19
19
author = " Matt Suiche (Magnet Forensics) "
20
20
description = " Hunting Russian Intelligence Snake Malware "
21
21
date = " 2023-05-10 "
22
+ modified = " 2025-03-21 "
22
23
threat_name = " Windows.Malware.Snake "
23
24
reference = " https://media.defense.gov/2023/May/09/2003218554/-1/-1/0/JOINT_CSA_HUNTING_RU_INTEL_SNAKE_MALWARE_20230509.PDF "
24
- score = 75
25
+ score = 70
25
26
scan_context = " memory "
26
27
license = " MIT "
27
28
Original file line number Diff line number Diff line change
1
+
1
2
rule SUSP_PS1_Msdt_Execution_May22 {
2
3
meta :
3
4
description = " Detects suspicious calls of msdt.exe as seen in CVE-2022-30190 / Follina exploitation "
4
5
author = " Nasreddine Bencherchali, Christian Burkard "
5
6
date = " 2022-05-31 "
6
- modified = " 2022-07-08 "
7
+ modified = " 2025-03-21 "
7
8
reference = " https://doublepulsar.com/follina-a-microsoft-office-code-execution-vulnerability-1a47fce5629e "
8
- score = 75
9
- id = " caa8a042-ffd4-52b2-a9f0-86e6c83a0aa3 "
9
+ score = 65
10
10
strings :
11
11
$ a = " PCWDiagnostic " ascii wide fullword
12
12
$ sa1 = " msdt.exe " ascii wide
@@ -23,12 +23,16 @@ rule SUSP_PS1_Msdt_Execution_May22 {
23
23
00 00 70 00 63 00 77 00 72 00 75 00 6E 00 2E 00
24
24
65 00 78 00 65 00 }
25
25
$ fp2 = " FilesFullTrust " wide
26
+ $ fp3 = " Cisco Spark " ascii wide
27
+ $ fp4 = " author: " ascii
26
28
condition :
27
29
filesize < 10MB
28
30
and $ a
29
31
and 1 of ($ sa * )
30
32
and 1 of ($ sb * )
31
33
and not 1 of ($ fp * )
34
+ // not JSON
35
+ and not uint8 (0 ) == 0x7B
32
36
}
33
37
34
38
rule SUSP_Doc_WordXMLRels_May22 {
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ rule SUSP_LNX_Base64_Exec_Apr24 : SCRIPT {
83
83
description = " Detects suspicious base64 encoded shell commands (as seen in Palo Alto CVE-2024-3400 exploitation) "
84
84
author = " Christian Burkard "
85
85
date = " 2024-04-18 "
86
- modified = " 2025-01-17 "
86
+ modified = " 2025-03-21 "
87
87
reference = " Internal Research "
88
88
score = 75
89
89
id = " 2da3d050-86b0-5903-97eb-c5f39ce4f3a3 "
@@ -94,7 +94,12 @@ rule SUSP_LNX_Base64_Exec_Apr24 : SCRIPT {
94
94
// $s4 = "/tmp/" base64 // prone to FPs
95
95
96
96
$ mirai = " country= "
97
+
98
+ $ fp1 = " <html "
99
+ $ fp2 = " <?xml "
97
100
condition :
98
101
filesize < 800KB
99
- and 1 of ($ s * ) and not $ mirai
102
+ and 1 of ($ s * )
103
+ and not $ mirai
104
+ and not 1 of ($ fp * )
100
105
}
You can’t perform that action at this time.
0 commit comments