aboutsummaryrefslogtreecommitdiff
path: root/yara.py
blob: 9252c68796e12d2259670ecc9da29f7e12beb2f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
import json
import sys
import os
import struct
import re
import logging

logger = logging.getLogger(__name__)

class OperatorTree(object):
    def __init__(self):
        self.left = None
        self.right = None
        self.parent = None
        self.operator = None
        self.data = None

class OperatorOf(object):
    def __init__(self, parent, n, pattern):
        self.parent = parent
        self.n = n
        self.pattern = pattern

class YaraDatabase(object):

    __FORMAT_HEADER = "=3sccI"
    __FORMAT_ENTRY = "=c{size_id}sc"
    __FORMAT_STRING = "=c{size_id}scH{size_text}scII"
    __FORMAT_WILDCARD = "=Ic"
    __FORMAT_RANGE = "=II"
    __FORMAT_OPERATOR = "=c"
    __FORMAT_OPERATOR_OF = "=cc"
    __FORMAT_OPERATOR_OF_ELEMENT = "=c"
    __FORMAT_OPERATOR_SINGLE = "=c"

    __STRING_TYPE_STRING = 0
    __STRING_TYPE_HEX = 1
    __STRING_TYPE_REGEX = 2

    __PATTERN_RANGE_VARIABLE = re.compile(r"^\[(\d+)-(\d+)\]$")
    __PATTERN_RANGE_FIXED = re.compile(r"^\[(\d+)\]$")
    __PATTERN_WILDCARD_HIGH = re.compile(r"^\?[0-9A-Fa-f]$")
    __PATTERN_WILDCARD_LOW = re.compile(r"^[0-9A-Fa-f]\?$")
    __PATTERN_WILDCARD_BOTH = re.compile(r"^\?\?$")
    __PATTERN_OF = re.compile(r"((\d+)|(all)|(any))\s+of\s+([\w\_\(\)\$\*\,]+)")
    __PATTERN_AND = re.compile(r"(.*)\s+and\s+(.*)")
    __PATTERN_OR = re.compile(r"(.*)\s+or\s+(.*)")

    __CONDITION_OPERATOR_OR = 0
    __CONDITION_OPERATOR_AND = 1
    __CONDITION_OPERATOR_OF = 2
    __CONDITION_OPERATOR_SINGLE = 3
    __CONDITION_OPERATOR_TRUE = 4
    __CONDITION_OPERATOR_FALSE = 5

    @staticmethod
    def parse_file(file):
        container = json.load(file)
        entries = list()
        entries.extend(container["rules"])
        return entries

    @staticmethod
    def build_tree(condition, parent):
        node = OperatorTree()
        node.data = condition
        logger.debug("Parsing condition = {}".format(condition))
        match = re.findall(YaraDatabase.__PATTERN_OR, condition)
        if match:
            node.left = YaraDatabase.build_tree(match[0][0], node)
            node.right = YaraDatabase.build_tree(match[0][1], node)
            node.operator = YaraDatabase.__CONDITION_OPERATOR_OR
            return node
        match = re.findall(YaraDatabase.__PATTERN_AND, condition)
        if match:
            node.left = YaraDatabase.build_tree(match[0][0], node)
            node.right = YaraDatabase.build_tree(match[0][1], node)
            node.operator = YaraDatabase.__CONDITION_OPERATOR_AND
            return node
        match = re.findall(YaraDatabase.__PATTERN_OF, condition)
        if match:
            logger.debug("Leaf: OperatorOf, match = {}, n = {}, pattern = {}".format(match, match[0][0], match[0][4]))
            return OperatorOf(parent, match[0][0], match[0][4])
        logger.debug("Leaf: remainder = {}".format(condition))
        return condition

    @staticmethod
    def compile_tree(node, strings):
        if isinstance(node, OperatorTree):
            data_left = YaraDatabase.compile_tree(node.left, strings)
            data_right = YaraDatabase.compile_tree(node.right, strings)
            logger.debug("Compiling OperatorTree, left = {}, right = {}".format(data_left, data_right))
            data_left += data_right
            data_left += struct.pack(YaraDatabase.__FORMAT_OPERATOR, node.operator.to_bytes(1))
            return data_left
        elif isinstance(node, OperatorOf):
            logger.debug("Compiling OperatorOf, n = {}, pattern = {}".format(node.n, node.pattern))
            data = bytearray()
            data += struct.pack(YaraDatabase.__FORMAT_OPERATOR, YaraDatabase.__CONDITION_OPERATOR_OF.to_bytes(1))
            of_elements = list()
            pattern = str()
            if node.pattern.strip() == "them":
                pattern = r".*"
            else:
                para = 0
                for c in node.pattern.strip():
                    if c == '$':
                        pattern += r"\$"
                    elif c == '*':
                        pattern += r".*"
                    elif c == ',':
                        pattern += ")|("
                    elif c == ' ':
                        pass
                    elif c == '(':
                        pattern += "("
                        para += 1
                    elif c == ')':
                        if para == 0:
                            logger.warning("Unmatched paranthesis in pattern {}".format(node.pattern))
                        else:
                            pattern += ")"
                            para -= 1
                    else:
                        pattern += c
            logger.debug("Patched pattern = {}".format(pattern))
            pattern = re.compile(pattern)
            c = 0
            for s in strings:
                if re.match(pattern, s):
                    of_elements.append(c)
                c += 1
            n = node.n
            if n == "all":
                n = 0
            if n == "any":
                n = 1
            data += struct.pack(YaraDatabase.__FORMAT_OPERATOR_OF, int(n).to_bytes(1), len(of_elements).to_bytes(1))
            for e in of_elements:
                data += struct.pack(YaraDatabase.__FORMAT_OPERATOR_OF_ELEMENT, e.to_bytes(1))
            return data
        else:
            logger.debug("Compiling single identifier {}".format(node))
            data = bytearray(struct.pack(YaraDatabase.__FORMAT_OPERATOR, YaraDatabase.__CONDITION_OPERATOR_SINGLE.to_bytes(1)))
            c = 0
            for s in strings:
                if s == node:
                    data += struct.pack(YaraDatabase.__FORMAT_OPERATOR_SINGLE, c.to_bytes(1))
                    return data
                c += 1
            else:
                logger.warning("Single identifier {} not found, defaulting to true".format(node))
                return bytearray(struct.pack(YaraDatabase.__FORMAT_OPERATOR, YaraDatabase.__CONDITION_OPERATOR_TRUE.to_bytes(1)))

    def add_file(self, filename):
        f = open(filename, 'r')
        self.__entries.extend(YaraDatabase.parse_file(f))
        f.close()

    def write_file(self, filename):
        f = open(filename, 'wb')
        header = struct.pack(self.__FORMAT_HEADER, "YAC".encode("utf-8"), b'\x00', b'\x00', len(self.__entries))
        logger.debug("Header data = {}".format(header))
        f.write(header)
        for entry in self.__entries:
            logger.debug("Compiling entry {}".format(entry["identifier"]))
            entry_data = bytearray(struct.pack(self.__FORMAT_ENTRY.format(size_id=len(entry["identifier"])), len(entry["identifier"]).to_bytes(1), entry["identifier"].encode("utf-8"), len(entry["strings"]).to_bytes(1)))
            logger.debug("Entry data = {}".format(entry_data))
            string_data = bytearray()
            for s in entry["strings"]:
                logger.debug("Compiling string {}".format(s["id"]))
                # first parse text
                text = bytearray()
                wildcards = list()
                ranges = list()
                if s["type"] == YaraDatabase.__STRING_TYPE_STRING:
                    logger.debug("String type string, text = {}".format(s["text"]))
                    text += s["text"].encode("utf-8")
                elif s["type"] == YaraDatabase.__STRING_TYPE_HEX:
                    bn = 0
                    for block in s["text"].strip().split(' '):
                        logger.debug("Compiling block = {}".format(block))
                        match = re.match(self.__PATTERN_RANGE_VARIABLE, block)
                        if match:
                            for i in range(int(match.group(1)), int(match.group(2)), 1):
                                logger.debug("Appending range = {}".format((bn, i)))
                                ranges.append((bn, i))
                            bn += 1
                            continue
                        match = re.match(self.__PATTERN_RANGE_FIXED, block)
                        if match:
                            logger.debug("Appending range = {}".format((bn, int(match.group(1)))))
                            ranges.append((bn, int(match.group(1))))
                            bn += 1
                            continue
                        if re.match(self.__PATTERN_WILDCARD_HIGH, block):
                            wildcards.append((bn, 1))
                            block = block.replace('?', '0')
                            text += bytearray.fromhex(block)
                            bn += 1
                            continue
                        if re.match(self.__PATTERN_WILDCARD_LOW, block):
                            wildcards.append((bn, 0))
                            block = block.replace('?', '0')
                            text += bytearray.fromhex(block)
                            bn += 1
                            continue
                        if re.match(self.__PATTERN_WILDCARD_BOTH, block):
                            wildcards.append((bn, 0))
                            wildcards.append((bn, 1))
                            block = block.replace('?', '0')
                            text += bytearray.fromhex(block)
                            bn += 1
                            continue
                        text += bytearray.fromhex(block)
                        bn += 1
                        continue
                elif s["type"] == YaraDatabase.__STRING_TYPE_REGEX:
                    text += s["text"].encode("utf-8")
                # parse modifiers
                modifiers = (((1 if s["modifiers"]["nocase"] else 0) << 6) |
                    ((1 if s["modifiers"]["ascii"] else 0) << 5) |
                    ((1 if s["modifiers"]["wide"] else 0) << 4) |
                    ((1 if s["modifiers"]["fullword"] else 0) << 3) |
                    ((1 if s["modifiers"]["private"] else 0) << 2) |
                    ((1 if s["modifiers"]["i"] else 0) << 1) |
                    ((1 if s["modifiers"]["s"] else 0) << 0))
                string_data += struct.pack(self.__FORMAT_STRING.format(size_id=len(s["id"]), size_text=len(text)), len(s["id"]).to_bytes(1), s["id"].encode("utf-8"), s["type"].to_bytes(1), len(text), text, modifiers.to_bytes(1), len(wildcards), len(ranges))
                for wildcard in wildcards:
                    string_data += struct.pack(self.__FORMAT_WILDCARD, wildcard[0], wildcard[1].to_bytes(1))
                for r in ranges:
                    string_data += struct.pack(self.__FORMAT_RANGE, r[0], r[1])
            logger.debug("Building conditional operator tree for entry = {}, condition = {}".format(entry["identifier"], entry["condition"]))
            node = YaraDatabase.build_tree(entry["condition"], None)
            logger.debug("Compiling conditional operator tree for entry = {}, condition = {}".format(entry["identifier"], entry["condition"]))
            condition_data = YaraDatabase.compile_tree(node, [s["id"] for s in entry["strings"]])
            logger.debug("Compilation done for entry {}".format(entry["identifier"]))
            f.write(entry_data)
            f.write(string_data)
            f.write(condition_data)
        logger.debug("Compilation done for file {}".format(filename))
        f.close()

    def __init__(self):
        self.__entries = list()
        pass