Skip to content

Commit

Permalink
Update expl_cleo_dec24.yar
Browse files Browse the repository at this point in the history
  • Loading branch information
Neo23x0 committed Dec 10, 2024
1 parent bf3774c commit 475e360
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions yara/expl_cleo_dec24.yar
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,20 @@ rule EXPL_Cleo_Exploitation_PS1_Indicators_Dec24 : SCRIPT {
condition:
1 of them
}

rule SUSP_EXPL_JAR_Indicators_Dec24 {
meta:
description = "Detects characteristics of JAR files used during Cleo software exploitation (as reported by Huntress in December 2024)"
author = "Florian Roth"
reference = "https://www.huntress.com/blog/threat-advisory-oh-no-cleo-cleo-software-actively-being-exploited-in-the-wild"
date = "2024-12-10"
score = 70
strings:
$s1 = "start.java" ascii fullword
$s2 = "TLS v3 " ascii
$s3 = "java/util/Base64$Decoder" ascii
condition:
uint16(0) == 0xfeca
and filesize < 20KB
and all of them
}

0 comments on commit 475e360

Please sign in to comment.