summaryrefslogtreecommitdiff
path: root/tests/analysis/scan/functions.py
blob: e9362636cb4db6826c01be49c64b0d04493ba2e3 (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

from common import RostTestClass
from pychrysalide.analysis.contents import MemoryContent


class TestRostFunctions(RostTestClass):
    """TestCases for the core functions of ROST."""

    # Core
    # ====

    def testDatasize(self):
        """Handle the size of the provided data."""

        cnt = MemoryContent(b'\x01\x02\x03\x04')

        cases = [
            'datasize == 4',
            'uint16(0) == 0x201 and uint16(datasize - 2) == 0x0403',
        ]

        for c in cases:

            rule = '''
rule test {

   condition:
      %s

}
''' % c

            self.check_rule_success(rule, cnt)


    # Modules
    # =======

    def testConsole(self):
        """Ensure logging always returns true."""

        rule = '''
rule test {

   condition:
      console.log()

}
'''

        self.check_rule_success(rule)


    def testMagic(self):
        """Scan text content with the Magic module."""

        cnt = MemoryContent(b'aaaa')

        cases = [
            [ 'type', 'ASCII text, with no line terminators' ],
            [ 'mime_encoding', 'us-ascii' ],
            [ 'mime_type', 'text/plain' ],
        ]

        for target, expected in cases:

            rule = '''
rule test {

   condition:
      magic.%s() == "%s"

}
''' % (target, expected)

            self.check_rule_success(rule, cnt)


    def testMathOperations(self):
        """Perform math operations with core functions."""

        rule = '''
rule test {

   condition:
      math.to_string(123) == "123"
         and math.to_string(291, 16) == "0x123"
         and math.to_string(-83, 8) == "-0123"
         and math.to_string(123, 2) == "0b1111011"

}
'''

        self.check_rule_success(rule)


    def testStringOperations(self):
        """Perform string operations with core functions."""

        rule = '''
rule test {

   condition:
      string.lower("ABCd") == "abcd" and string.lower("123abc") == "123abc"

}
'''

        self.check_rule_success(rule)


        rule = '''
rule test {

   condition:
      string.upper("abcD") == "ABCD" and string.upper("123ABC") == "123ABC"

}
'''

        self.check_rule_success(rule)


        rule = '''
rule test {

   condition:
      string.to_int("123") == 123
         and string.to_int("123", 16) == 291
         and string.to_int("0x123") == 291
         and string.to_int("-0123") == -83

}
'''

        self.check_rule_success(rule)


        rule = r'''
rule test {

   condition:
      "A\x00B\x00C\x00D\x00" endswith string.wide("CD")
          and "A\x00B\x00C\x00D\x00" contains string.wide("BC")

}
'''

        self.check_rule_success(rule)


    def testTime(self):
        """Check current time."""

        # Cf. https://www.epochconverter.com/

        rule = '''
rule test {

   condition:
      time.make(2023, 8, 5, 22, 8, 41) == 0x64cec869

}
'''

        self.check_rule_success(rule)


        rule = '''
rule test {

   condition:
      time.now() >= 0x64cec874 and time.now() <= time.now()

}
'''

        self.check_rule_success(rule)