forked from bradleyjkemp/sigma-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rule_parser.go
312 lines (262 loc) · 9.12 KB
/
rule_parser.go
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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
package sigma
import (
"fmt"
"strings"
"gopkg.in/yaml.v3"
)
type Rule struct {
// Required fields
Title string `yaml:"title,omitempty" json:"Title,omitempty"`
Name string `yaml:"name,omitempty" json:"Name,omitempty"`
Logsource Logsource `yaml:"logsource,omitempty" json:"Logsource,omitempty"`
Detection Detection `yaml:"detection,omitempty" json:"Detection,omitempty"`
Correlation *Correlation `yaml:"correlation,omitempty" json:"Correlation,omitempty"`
ID string `yaml:"id,omitempty" json:"Id,omitempty"`
Related []RelatedRule `yaml:"related,omitempty" json:"related,omitempty"`
Status string `yaml:"status,omitempty" json:"status,omitempty"`
Description string `yaml:"description,omitempty" json:"Description,omitempty"`
Author string `yaml:"author,omitempty" json:"Author,omitempty"`
Level string `yaml:"level,omitempty" json:"Level,omitempty"`
// This field can be a list of strings or a single string. We
// actually never care about this field so we just preserve it.
// https://sigmahq.io/docs/basics/rules.html#metadata-references
References interface{} `yaml:"references,omitempty" json:"References,omitempty"`
Tags []string `yaml:"tags,omitempty" json:"Tags,omitempty"`
// Any non-standard fields will end up in here
AdditionalFields map[string]interface{} `yaml:",inline,omitempty" json:",inline,omitempty"`
}
type RelatedRule struct {
ID string
Type string
}
type Logsource struct {
Category string `yaml:"category,omitempty" json:"Category,omitempty"`
Product string `yaml:"product,omitempty" json:"Product,omitempty"`
Service string `yaml:"service,omitempty" json:"Service,omitempty"`
Definition string `yaml:"definition,omitempty" json:"Definition,omitempty"`
// Any non-standard fields will end up in here
AdditionalFields map[string]interface{} `yaml:",inline,omitempty" json:",inline,omitempty"`
}
type Detection struct {
Searches map[string]Search `yaml:"searches,inline,omitempty" json:"Searches,inline,omitempty"`
Conditions Conditions `yaml:"condition,omitempty" json:"Condition,omitempty"`
// This is not actually supported right now since there are no
// aggregates so we just preserve it in its string form.
// Timeframe time.Duration `yaml:",omitempty" json:",omitempty"`
Timeframe string `yaml:",omitempty" json:",omitempty"`
}
func (d *Detection) UnmarshalYAML(node *yaml.Node) error {
// we need a custom unmarshaller here to handle the position information for searches
if node.Kind != yaml.MappingNode || len(node.Content)%2 != 0 {
return fmt.Errorf("cannot unmarshal %d into Detection", node.Kind)
}
for i := 0; i < len(node.Content); i += 2 {
key, value := node.Content[i], node.Content[i+1]
switch key.Value {
case "condition":
if err := d.Conditions.UnmarshalYAML(value); err != nil {
return err
}
case "timeframe":
if err := value.Decode(&d.Timeframe); err != nil {
return err
}
default:
search := Search{}
if err := search.UnmarshalYAML(value); err != nil {
return err
}
search.node = key
if d.Searches == nil {
d.Searches = map[string]Search{}
}
d.Searches[key.Value] = search
}
}
return nil
}
type Correlation struct {
Type string `json:"type,omitempty" yaml:"type,omitempty"`
Rules []string `json:"rules,omitempty" yaml:"rules,omitempty"`
GroupBy []string `json:"group-by,omitempty" yaml:"group-by,omitempty"`
Timespan string `json:"timespan,omitempty" yaml:"timespan,omitempty"`
Condition map[string]interface{} `json:"condition,omitempty" yaml:"condition,omitempty"`
Generate bool `json:"generate,omitempty" yaml:"generate,omitempty"`
}
type Conditions []Condition
func (c *Conditions) UnmarshalYAML(node *yaml.Node) error {
switch node.Kind {
case yaml.ScalarNode:
var condition string
if err := node.Decode(&condition); err != nil {
return err
}
parsed, err := ParseCondition(condition)
if err != nil {
return err
}
parsed.node = node
*c = []Condition{parsed}
case yaml.SequenceNode:
var conditions []string
if err := node.Decode(&conditions); err != nil {
return err
}
for i, condition := range conditions {
parsed, err := ParseCondition(condition)
if err != nil {
return fmt.Errorf("error parsing condition \"%s\": %w", condition, err)
}
parsed.node = node.Content[i]
*c = append(*c, parsed)
}
default:
return fmt.Errorf("invalid condition (line %d). Expected a single value or a list", node.Line)
}
return nil
}
// Marshal the conditions back to grammar expressions :sob:
func (c Conditions) MarshalYAML() (interface{}, error) {
if len(c) == 1 {
return c[0], nil
} else {
return []Condition(c), nil
}
}
type Search struct {
node *yaml.Node
Keywords []string `yaml:"keywords,omitempty" json:"keywords,omitempty"`
EventMatchers []EventMatcher `yaml:"event_matchers,omitempty" json:"event_matchers,omitempty"`
}
func (s *Search) UnmarshalYAML(node *yaml.Node) error {
s.node = node
switch node.Kind {
// In the common case, SearchIdentifiers are a single EventMatcher (map of field names to values)
case yaml.MappingNode:
s.EventMatchers = []EventMatcher{{}}
return node.Decode(&s.EventMatchers[0])
// Or, SearchIdentifiers can be a list.
// Either of keywords (not supported by this library) or a list of EventMatchers (maps of fields to values)
case yaml.SequenceNode:
if len(node.Content) == 0 {
return fmt.Errorf("invalid search condition node (empty) (line %d)", node.Line)
}
switch node.Content[0].Kind {
case yaml.ScalarNode:
return node.Decode(&s.Keywords)
case yaml.MappingNode:
return node.Decode(&s.EventMatchers)
default:
return fmt.Errorf("invalid list (line %d). Expected a list of strings or a list of maps", node.Line)
}
default:
return fmt.Errorf("invalid search (line %d). Expected a map or list, got a scalar", node.Line)
}
}
// Position returns the line and column of this Search in the original input
func (s Search) Position() (int, int) {
return s.node.Line - 1, s.node.Column - 1
}
func (s Search) MarshalYAML() (interface{}, error) {
var err error
result := &yaml.Node{}
if s.Keywords != nil {
err = result.Encode(&s.Keywords)
} else if len(s.EventMatchers) == 1 {
err = result.Encode(&s.EventMatchers[0])
} else if len(s.EventMatchers) == 0 {
err = fmt.Errorf("no search criteria")
} else {
err = result.Encode(&s.EventMatchers)
}
return result, err
}
type EventMatcher []FieldMatcher
func (f *EventMatcher) UnmarshalYAML(node *yaml.Node) error {
if len(node.Content)%2 != 0 {
return fmt.Errorf("internal: node.Content %% 2 != 0")
}
for i := 0; i < len(node.Content); i += 2 {
matcher := FieldMatcher{}
err := matcher.unmarshal(node.Content[i], node.Content[i+1])
if err != nil {
return err
}
*f = append(*f, matcher)
}
return nil
}
func (f EventMatcher) MarshalYAML() (interface{}, error) {
// Event matchers are represented by mapping nodes
result := &yaml.Node{
Kind: yaml.MappingNode,
}
// Reconstruct the mapping node for this event matcher
for _, matcher := range f {
// Reconstruct the field and value nodes
if field_node, value_node, err := matcher.marshal(); err != nil {
return nil, err
} else {
// Store the field name/value
result.Content = append(result.Content, field_node, value_node)
}
}
return result, nil
}
type FieldMatcher struct {
node *yaml.Node
Field string `yaml:"field,omitempty" json:"field,omitempty"`
Modifiers []string `yaml:"modifiers,omitempty" json:"modifiers,omitempty"`
Values []interface{} `yaml:"values,omitempty" json:"values,omitempty"`
}
// Position returns the line and column of this FieldMatcher in the original input
func (f FieldMatcher) Position() (int, int) {
return f.node.Line - 1, f.node.Column - 1
}
func (f *FieldMatcher) unmarshal(field *yaml.Node, values *yaml.Node) error {
f.node = field
fieldParts := strings.Split(field.Value, "|")
f.Field, f.Modifiers = fieldParts[0], fieldParts[1:]
switch values.Kind {
case yaml.ScalarNode:
f.Values = []interface{}{nil}
return values.Decode(&f.Values[0])
case yaml.SequenceNode:
return values.Decode(&f.Values)
case yaml.MappingNode:
f.Values = []interface{}{map[string]interface{}{}}
return values.Decode(&f.Values[0])
case yaml.AliasNode:
return f.unmarshal(field, values.Alias)
}
return nil
}
func (f *FieldMatcher) marshal() (field_node *yaml.Node, value_node *yaml.Node, err error) {
// Reconstruct the field name with modifiers
field := f.Field
if len(f.Modifiers) > 0 {
field = field + "|" + strings.Join(f.Modifiers, "|")
}
// Encode the field name
field_node = &yaml.Node{}
err = field_node.Encode(&field)
if err != nil {
return nil, nil, err
}
// Encode the field value(s)
value_node = &yaml.Node{}
if len(f.Values) == 1 {
err = value_node.Encode(&f.Values[0])
} else {
err = value_node.Encode(&f.Values)
}
if err != nil {
return nil, nil, err
}
return field_node, value_node, err
}
func ParseRule(input []byte) (Rule, error) {
rule := Rule{}
err := yaml.Unmarshal(input, &rule)
return rule, err
}