1
- rule mal_babbleloader_win_jan24 {
2
- meta :
3
- author = " 0x0d4y "
4
- description = " This rule detects intrinsic patterns of BabbleLoader. "
5
- date = " 2025-01-27 "
6
- score = 100
7
- reference = " https://0x0d4y.blog/babbleloader-technical-malware-analysis/ "
8
- hash = " fa3d03c319a7597712eeff1338dabf92 "
9
-
10
- uuid = " b2f18ab3-b4df-4e2f-aa23-de8694beb221 "
11
- license = " CC BY 4.0 "
12
- rule_matching_tlp = " TLP:WHITE "
13
- rule_sharing_tlp = " TLP:WHITE "
14
- strings :
15
- $ str_decryption_algorithm = { 48 63 44 24 ?? 48 8b 4c 24 ?? 0f b6 04 ?? 33 44 ?? ?? 0f b6 4c ?? ?? d2 c8 48 63 4c ?? ?? 48 8b 54 ?? ?? 88 04 0a 6b 44 24 ?? ?? 89 44 ?? ?? 8b 44 24 ?? ff c0 89 44 24 }
16
- $ hashing_algorithm = { 48 8b 44 24 ?? 0f be ?? 89 44 24 ?? 8b 44 24 ?? 89 44 24 ?? 48 8b 44 24 ?? 48 ff c0 48 89 44 24 ?? 83 7c 24 08 ?? ?? ?? 8b 44 24 ?? 8b 0c ?? 03 c8 8b c1 89 04 24 8b 44 24 ?? 05 ?? ?? ?? ?? 8b 0c 24 0f af c8 8b c1 89 04 }
17
- $ halos_gate = { 48 8b 44 24 ?? 0f b6 ?? 83 f8 4c 0f ?? ?? ?? ?? ?? 48 8b 44 ?? ?? 0f b6 ?? ?? 3d 8b ?? ?? ?? 75 ?? 48 8b 44 ?? ?? 0f b6 40 ?? 3d d1 ?? ?? ?? 75 ?? 48 8b 44 ?? ?? 0f b6 40 ?? 3d b8 ?? ?? ?? 75 ?? 48 8b 44 ?? ?? 0f b6 40 ?? 85 c0 75 ?? 48 8b 44 ?? ?? 0f b6 40 ?? 85c0 75 ?? 48 8b 44 ?? ?? 0f b6 40 ?? 88 44 ?? ?? 48 8b 44 24 ?? 0f b6 40 ?? 88 44 ?? ?? 0f b6 44 ?? ?? c1 e0 08 0f b6 4c ?? ?? 0b c1 48 8b 8c ?? ?? ?? ?? ?? 89 01 ?? ?? ?? ?? ?? 48 8b 44 ?? ?? 0f b6 00 3d e9 }
18
-
19
- $ get_syscall_offset = { 4d 33 db 4c 8b d9 c3 }
20
- $ jump_syscall_offset = { 4c 8b d1 41 8b 03 41 ff 63 ?? }
21
- condition :
22
- uint16 (0 ) == 0x5a4d and
23
- $ str_decryption_algorithm and $ hashing_algorithm and (1 of ($ halos_gate , $ get_syscall_offset , $ jump_syscall_offset ))
1
+ rule mal_babbleloader_win_jan24 {
2
+ meta :
3
+ author = " 0x0d4y "
4
+ description = " This rule detects intrinsic patterns of BabbleLoader. "
5
+ date = " 2025-01-27 "
6
+ score = 100
7
+ reference = " https://0x0d4y.blog/babbleloader-technical-malware-analysis/ "
8
+ hash = " fa3d03c319a7597712eeff1338dabf92 "
9
+
10
+ uuid = " b2f18ab3-b4df-4e2f-aa23-de8694beb221 "
11
+ license = " CC BY 4.0 "
12
+ rule_matching_tlp = " TLP:WHITE "
13
+ rule_sharing_tlp = " TLP:WHITE "
14
+ strings :
15
+ $ str_decryption_algorithm = { 48 63 44 24 ?? 48 8b 4c 24 ?? 0f b6 04 ?? 33 44 ?? ?? 0f b6 4c ?? ?? d2 c8 48 63 4c ?? ?? 48 8b 54 ?? ?? 88 04 0a 6b 44 24 ?? ?? 89 44 ?? ?? 8b 44 24 ?? ff c0 89 44 24 }
16
+ $ hashing_algorithm = { 48 8b 44 24 ?? 0f be ?? 89 44 24 ?? 8b 44 24 ?? 89 44 24 ?? 48 8b 44 24 ?? 48 ff c0 48 89 44 24 ?? 83 7c 24 08 ?? ?? ?? 8b 44 24 ?? 8b 0c ?? 03 c8 8b c1 89 04 24 8b 44 24 ?? 05 ?? ?? ?? ?? 8b 0c 24 0f af c8 8b c1 89 04 }
17
+ $ halos_gate = { 48 8b 44 24 ?? 0f b6 ?? 83 f8 4c 0f ?? ?? ?? ?? ?? 48 8b 44 ?? ?? 0f b6 ?? ?? 3d 8b ?? ?? ?? 75 ?? 48 8b 44 ?? ?? 0f b6 40 ?? 3d d1 ?? ?? ?? 75 ?? 48 8b 44 ?? ?? 0f b6 40 ?? 3d b8 ?? ?? ?? 75 ?? 48 8b 44 ?? ?? 0f b6 40 ?? 85 c0 75 ?? 48 8b 44 ?? ?? 0f b6 40 ?? 85c0 75 ?? 48 8b 44 ?? ?? 0f b6 40 ?? 88 44 ?? ?? 48 8b 44 24 ?? 0f b6 40 ?? 88 44 ?? ?? 0f b6 44 ?? ?? c1 e0 08 0f b6 4c ?? ?? 0b c1 48 8b 8c ?? ?? ?? ?? ?? 89 01 ?? ?? ?? ?? ?? 48 8b 44 ?? ?? 0f b6 00 3d e9 }
18
+
19
+ $ get_syscall_offset = { 4d 33 db 4c 8b d9 c3 }
20
+ $ jump_syscall_offset = { 4c 8b d1 41 8b 03 41 ff 63 ?? }
21
+ condition :
22
+ uint16 (0 ) == 0x5a4d and
23
+ $ str_decryption_algorithm and $ hashing_algorithm and (1 of ($ halos_gate , $ get_syscall_offset , $ jump_syscall_offset ))
24
24
}
0 commit comments