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

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


class TestRostScanningStrings(RostTestClass):
    """TestCases for the bytes section syntax (strings)."""

    def testSimpleStringPattern(self):
        """Test a simple string pattern."""

        cnt = MemoryContent(b'123-Abc-456')

        rule = '''
rule test {

   bytes:
      $a = "Abc"

   condition:
      #a == 1 and @a[0] == 4

}
'''

        self.check_rule_success(rule, content=cnt)


    def testEscapedStringPattern(self):
        """Test escaped string patterns."""

        cnt = MemoryContent(b'\a\b\t\n\v\f\r' + bytes([ 0x1b ]) + b'"\\\xff')

        rule = r'''
rule test {

   bytes:
      $a = "\a\b\t\n\v\f\r\e\"\\\xff"

   condition:
      #a == 1 and @a[0] == 0

}
'''

        self.check_rule_success(rule, content=cnt)


        cnt = MemoryContent(b'\a\b\t\n--123--\v\f\r' + bytes([ 0x1b ]) + b'"\\\xff')

        rule = r'''
rule test {

   bytes:
      $a = "\a\b\t\n--123--\v\f\r\e\"\\\xff"

   condition:
      #a == 1 and @a[0] == 0

}
'''

        self.check_rule_success(rule, content=cnt)


    def testStringModifiers(self):
        """Check string modifiers output."""

        cnt = MemoryContent(b'--414243--')

        rule = '''
rule test {

   bytes:
      $a = "ABC" hex

   condition:
      #a == 1

}
'''

        self.check_rule_success(rule, content=cnt)


        cnt = MemoryContent(b'--ABC--')

        rule = '''
rule test {

   bytes:
      $a = "ABC" plain

   condition:
      #a == 1

}
'''

        self.check_rule_success(rule, content=cnt)


        cnt = MemoryContent(b'--CBA--')

        rule = '''
rule test {

   bytes:
      $a = "ABC" rev

   condition:
      #a == 1

}
'''


    def testStringPatternFullword(self):
        """Test a fullword string pattern."""

        cnt = MemoryContent(b'ABCDEF 123 ')

        rule = '''
rule test {

   bytes:
      $a = "DEF" fullword
      $b = "123" fullword

   condition:
      #a == 0 and #b == 1

}
'''

        self.check_rule_success(rule, content=cnt)


        cnt = MemoryContent(b'DEF 123 ')

        rule = '''
rule test {

   bytes:
      $a = "DEF" fullword
      $b = "123" fullword

   condition:
      #a == 1 and #b == 1

}
'''

        self.check_rule_success(rule, content=cnt)


        cnt = MemoryContent(b'\tDEF 123 ')

        rule = '''
rule test {

   bytes:
      $a = "DEF" fullword
      $b = "123" fullword

   condition:
      #a == 1 and #b == 1

}
'''

        self.check_rule_success(rule, content=cnt)


    def testStringPatternCase(self):
        """Test a string pattern with case care."""

        cnt = MemoryContent(b'abc123-Abc123Def456GHI...z0z1z2z3z4z5z6z7z8z9')

        rule = '''
rule test {

   bytes:
      $a = "Abc" nocase
      $b = "ABC123DEF456GHI" nocase
      $z = "z0z1z2z3z4z5z6z7z8z9" nocase

   condition:
      #a == 2 and #b == 1 and #z == 1

}
'''

        self.check_rule_success(rule, content=cnt)