Skip to content

Commit e3966f0

Browse files
committedDec 10, 2024··
Update expl_cleo_dec24.yar
1 parent 49cfbde commit e3966f0

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed
 

‎yara/expl_cleo_dec24.yar

+41
Original file line numberDiff line numberDiff line change
@@ -67,3 +67,44 @@ rule SUSP_EXPL_JAR_Indicators_Dec24 {
6767
and filesize < 20KB
6868
and all of them
6969
}
70+
71+
rule EXPL_Cleo_Exploitation_JAVA_Payloads_Dec24_1_1 {
72+
meta:
73+
description = "Detects characteristics of JAVA files used during Cleo software exploitation (as reported by Huntress in December 2024) - files Cli, ScSlot, Slot, SrvSlot"
74+
author = "Florian Roth"
75+
reference = "https://www.huntress.com/blog/threat-advisory-oh-no-cleo-cleo-software-actively-being-exploited-in-the-wild"
76+
date = "2024-12-10"
77+
score = 75
78+
hash1 = "0c57b317b572d071afd8ccdb844dd6f117e20f818c6031d7ba8adcbd32be0617"
79+
strings:
80+
$a1 = "java/lang/StringBuffer"
81+
82+
$x1 = "Start-Sleep 3;del " ascii
83+
$x2 = "sleep 3;rm -f '" ascii
84+
$x3 = "powershell -Noninteractive -EncodedCommand " ascii
85+
$x4 = "runDelFileCmd" ascii fullword
86+
condition:
87+
uint16(0) == 0xfeca
88+
and filesize < 50KB
89+
and $a1
90+
and 1 of ($x*)
91+
}
92+
93+
rule EXPL_Cleo_Exploitation_JAVA_Payloads_Dec24_2 {
94+
meta:
95+
description = "Detects characteristics of JAVA files used during Cleo software exploitation (as reported by Huntress in December 2024) - file Proc"
96+
author = "Florian Roth"
97+
reference = "https://www.huntress.com/blog/threat-advisory-oh-no-cleo-cleo-software-actively-being-exploited-in-the-wild"
98+
date = "2024-12-10"
99+
score = 75
100+
hash1 = "1ba95af21bac45db43ebf02f87ecedde802c7de4d472f33e74ee0a5b5015a726"
101+
strings:
102+
$s1 = "Timeout getting pipe-data" ascii fullword
103+
$s2 = "Ftprootpath" ascii fullword
104+
$s3 = "Rest cmd=" ascii fullword
105+
$s4 = "writeToProc" ascii fullword
106+
condition:
107+
uint16(0) == 0xfeca
108+
and filesize < 30KB
109+
and 3 of them
110+
}

0 commit comments

Comments
 (0)
Please sign in to comment.