Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 602c210 commit db3cb6aCopy full SHA for db3cb6a
1 file changed
yara/mal_etoroloro_nodepackage_dec25.yar
@@ -0,0 +1,27 @@
1
+
2
+rule MAL_Etoroloro_Malicious_NodePackage_Dec25 {
3
+ meta:
4
+ description = "Detects malicious component of node package named Etoroloro"
5
+ reference = "Internal Research"
6
+ author = "Pezier Pierre-Henri"
7
+ date = "2025-12-12"
8
+ score = 80
9
+ hash = "f08c5b748c91dd45fd73c5e85920f656e361d94b869e2147410b2b528c6ae78f"
10
+ strings:
11
+ $s1 = "DLLSideload."
12
+ $s2 = "Failed to expand path:" wide
13
+ $op1 = {
14
+ 41 0f af c0 // imul eax, r8d
15
+ 48 8d 52 01 // lea rdx, [rdx+1]
16
+ 0f b6 c9 // movzx ecx, cl
17
+ 45 69 c0 35 d4 04 00 // imul r8d, 4D435h
18
+ 03 c1 // add eax, ecx
19
+ 0f b6 0a // movzx ecx, byte ptr [rdx]
20
+ 84 c9 // test cl, cl
21
+ 75 e5 // jnz short loc_1800022C0
22
+ }
23
+ condition:
24
+ uint16(0) == 0x5a4d
25
+ and (all of ($s*) or $op1)
26
+}
27
0 commit comments