We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fa42beb + eb79c3e commit 3fd6f96Copy full SHA for 3fd6f96
blog/mozin-about/mozi-obfuscation-technique.yara
@@ -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
10
- 00 00 00 00 }
11
-condition:
12
- all of them
+rule MoziObfuscationTechnique
+{
+ meta:
+ author = "Elastic Security, Lars Wallenborn (@larsborn)"
+ description = "Detects obfuscation technique used by Mozi botnet."
+ strings:
+ $a = { 55 50 58 21
+ [4]
+ 00 00 00 00
+ 00 00 00 00 }
+ condition:
13
+ all of them
14
+}
0 commit comments