Skip to content
This repository was archived by the owner on Jan 10, 2025. It is now read-only.

Commit 3fd6f96

Browse files
authored
Merge pull request #6 from dcode/blog/mozin-about
Fix yara syntax
2 parents fa42beb + eb79c3e commit 3fd6f96

File tree

1 file changed

+14
-12
lines changed

1 file changed

+14
-12
lines changed
Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
rule Mozi Obfuscation Technique {
2-
meta:
3-
author = "Elastic Security, Lars Wallenborn (@larsborn)"
4-
description = "Detects obfuscation technique used by Mozi botnet."
5-
string:
6-
$a = { 55 50 58 21
7-
[4]
8-
00 00 00 00
9-
00 00 00 00
10-
00 00 00 00 }
11-
condition:
12-
all of them
1+
rule MoziObfuscationTechnique
2+
{
3+
meta:
4+
author = "Elastic Security, Lars Wallenborn (@larsborn)"
5+
description = "Detects obfuscation technique used by Mozi botnet."
6+
strings:
7+
$a = { 55 50 58 21
8+
[4]
9+
00 00 00 00
10+
00 00 00 00
11+
00 00 00 00 }
12+
condition:
13+
all of them
14+
}

0 commit comments

Comments
 (0)