forked from SecureHats/validate-detections
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yaml-analytics.tests.ps1
445 lines (382 loc) · 14.9 KB
/
yaml-analytics.tests.ps1
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
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
# Validation for PascalCase (GreaterThan)
$script:regEx_PascalCase = "^[A-Z][a-z]+(?:[A-Z][a-z]+)*$"
# Validation for camelCase (scheduledRule)
$script:regEx_camelCase = "^[a-z]+(?:[A-Z][a-z]+)*$"
# Validation for camelCase (scheduledRule)
$script:regEx_lowerCase = "^[a-z]*$"
# Validation for valid GUID value (00000000-ffff-bbbb-aaaa-000000000000)
$script:regEx_Guid = '^[{]?[0-9a-fA-F]{8}-([0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12}[}]?$'
# Validation for value between 0 and 10000
$script:regEx_MaxValue = '^([0-9]{1}[0-0]{0,0}|1([0-9]{1,3})|10000)$'
# Validation for Mitre Technique with subvalue (T1078) or (T1078.001)
$script:regEx_Technique = '^(([T0-9]{5}))+(?:[.0-9]{4})?$'
# Validation for version number (1.3.1)
$script:regEx_Version = '^([0-9].([0-9]).{2})$'
# Validation for duration with max values of P14D (14 days), PT24H (24 hours) PT1440M (1440 minutes)
$script:regEx_yamlTime = '^[1-9]d|^1[0-4]d|([1-9]|[1-9][0-9]|[1-2][0-9][0-9]|3[0-3][0-6])h|([5-9]|[1-9][0-9]|[1-9][0-9][0-9]|1[0-3][0-9][0-9]|14[0-3][0-9]|1440)m'
Describe "Detections" {
$testCases = Get-ChildItem -Path $detectionsPath -Include "*.yaml", "*.yml" -Exclude "action.yml", "*pipelines.yml", "*variables.yml" -Recurse | ForEach-Object -Process {
@{
file = $_.FullName
yamlObject = (Get-Content -Path $_.FullName | ConvertFrom-Yaml)
path = $_.DirectoryName
name = $_.Name
}
}
Context "General" {
It 'MITRE ATT&CK Should be loaded' {
$attack | Should -Not -BeNullOrEmpty
}
It 'Converts from YAML | <Name>' -TestCases $testCases {
param (
$file,
$yamlObject
)
$yamlObject | Should -Not -BeNullOrEmpty
}
}
Context "Properties" {
It 'Do properties use camelCasing | <Name>' -TestCases $testCases {
param (
$file,
$yamlObject
)
($yamlObject.psobject.Properties | Where-Object Name -eq Keys).value.ForEach{
$_ | Should -MatchExactly $regEx_camelCase
}
}
It 'Kind should be in the allowed list | <Name>' -TestCases $testCases {
param (
$file,
$yamlObject
)
$kind = $yamlObject.kind
$expectedKind = @(
'Scheduled',
'NRT'
)
$kind | Should -BeIn $expectedKind
}
It 'Version should not be empty | <Name>' -TestCases $testCases {
param (
$file,
$yamlObject
)
$version = $yamlObject.version
$version | Should -Not -BeNullOrEmpty
}
It 'Version should be in a valid format | <Name>' -TestCases $testCases {
param (
$file,
$yamlObject
)
$version = $yamlObject.version
$version | Should -MatchExactly $regEx_Version
}
It 'Severity should be in the allowed list | <Name>' -TestCases $testCases {
param (
$file,
$yamlObject
)
$severities = $yamlObject.severity
$expectedSeverity = @(
'Low',
'Medium',
'High',
'Informational'
)
foreach ($severity in $severities) {
$severity | Should -BeIn $expectedSeverity
}
}
It 'Severity should be in PascalCase | <Name>' -TestCases $testCases {
param (
$file,
$yamlObject
)
$yamlObject.severity | Should -MatchExactly $regEx_PascalCase
}
It 'Trigger should be in the allowed list values | <Name>' -TestCases $testCases {
param (
$file,
$yamlObject
)
$expectedOperator = @(
'eq',
'gt',
'lt',
'ne'
)
if ($yamlObject.kind -eq 'Scheduled') {
$yamlObject.triggerOperator | Should -BeIn $expectedOperator
}
}
It 'TriggerOperator value should be in LowerCase | <Name>' -TestCases $testCases {
param (
$file,
$yamlObject
)
if ($yamlObject.kind -eq 'Scheduled') {
$yamlObject.TriggerOperator | Should -MatchExactly $regEx_LowerCase
}
}
It 'Threshold should be a integer value | <Name>' -TestCases $testCases {
param (
$file,
$yamlObject
)
if ($yamlObject.kind -eq 'Scheduled') {
$yamlObject.triggerThreshold | Should -BeOfType System.ValueType
}
}
It 'Threshold should not be more than 10000 | <Name>' -TestCases $testCases {
param (
$file,
$yamlObject
)
if ($yamlObject.kind -eq 'Scheduled') {
$yamlObject.triggerThreshold | Should -MatchExactly $regEx_MaxValue
}
}
It 'Tactics should be in the expected value list | <Name>' -TestCases $testCases {
param (
$file,
$yamlObject
)
$expectedTactics = @(
'Reconnaissance',
'ResourceDevelopment',
'InitialAccess',
'Execution',
'Persistence',
'PrivilegeEscalation',
'DefenseEvasion',
'CredentialAccess',
'Discovery',
'LateralMovement',
'Collection',
'CommandandControl',
'Exfiltration',
'Impact'
)
foreach ($tactic in $yamlObject.tactics) {
$tactic | Should -BeIn $expectedTactics
}
}
It 'Technique should be in the expected value list | <Name>' -TestCases $testCases {
param (
$file,
$yamlObject
)
foreach ($technique in $yamlObject.relevantTechniques) {
$attack.id | Should -Contain $technique
}
}
It 'Tactics should be in PascalCase | <Name>' -TestCases $testCases {
param (
$file,
$yamlObject
)
$tactics = $yamlObject.tactics
foreach ($tactic in $tactics) {
$tactic | Should -MatchExactly $regEx_PascalCase
}
}
It 'Technique should be not be empty | <Name>' -TestCases $testCases {
param (
$file,
$yamlObject
)
$techniques = $yamlObject.relevantTechniques
$techniques.count | Should -BeGreaterOrEqual 1
}
It 'Technique should start with T followed by 4 numbers | <Name>' -TestCases $testCases {
param (
$file,
$yamlObject
)
$techniques = $yamlObject.relevantTechniques
foreach ($technique in $techniques) {
$technique | Should -MatchExactly $regEx_Technique
}
}
It 'Technique should map to the correct Tactics | <Name>' -TestCases $testCases {
param (
$file,
$yamlObject
)
$techniques = $yamlObject.relevantTechniques
foreach ($technique in $techniques) {
$tactics = @( $attack | Where-Object id -eq "$technique" ).tactics -split ',' | Sort-Object -Unique #2 + #1
[int]$totalTactics = $totalTactics + $tactics.count
Write-Output "Total Tactics $tactics = [$totalTactics]"
foreach ($tactic in $tactics) {
if ($tactic -in $yamlObject.tactics) {
[int]$i = $i + $tactics.count
Write-Output "Current Count is with $tactics [$i]"
}
}
Write-Output "$i"
if ($i -lt $totalTactics) {
$tactic | Should -BeIn $yamlObject.tactics -Because "[$($technique)] is specified in 'relevantTechniques'"
}
}
}
It 'Tactics should map to the correct Technique | <Name>' -TestCases $testCases {
param (
$file,
$yamlObject
)
$tactics = $yamlObject.tactics
$relevantTechniques = $yamlObject.relevantTechniques
if ($null -ne $relevantTechniques) {
foreach ($tactic in $tactics) {
$techniques = @( $attack | Where-Object tactics -like "*$tactic*" ).id -split ',' | Sort-Object -Descending -Unique
[int]$totalTechniques = $totalTechniques + $techniques.count
foreach ($technique in $techniques) {
if ($technique -in $relevantTechniques) {
[int]$i = $i + $techniques.count
}
}
if ($i -lt $totalTechniques) {
'a valid technique' | Should -BeIn $relevantTechniques -Because "[$($tactic)] is specified in tactics"
}
}
}
}
It 'The id should be a valid GUID | <Name>' -TestCases $testCases {
param (
$file,
$yamlObject
)
$id = $yamlObject.id
$id | Should -MatchExactly $regEx_Guid
}
It 'Entity Type should be in the expected value list | <Name>' -TestCases $testCases {
param (
$file,
$yamlObject
)
$entityTypes = $yamlObject.entityMappings.entityType
$expectedEntityTypes = @(
'Account',
'AzureResource',
'CloudApplication',
'DNS',
'File',
'FileHash',
'Host',
'IP',
'MailCluster',
'MailMessage',
'Mailbox',
'Malware',
'Process',
'RegistryKey',
'RegistryValue',
'SecurityGroup',
'SubmissionMail',
'URL'
)
foreach ($entityType in $entityTypes) {
$entityType | Should -BeIn $expectedEntityTypes
}
}
It 'Entity Type should be in PascalCase | <Name>' -TestCases $testCases {
param (
$file,
$yamlObject
)
$entityTypes = $yamlObject.entityMappings.entityType
foreach ($entityType in $entityTypes) {
if ($entityType -notlike "*IP*" -and $entityType -notlike "*URL*" -and $entityType -notlike "*DNS*") {
$entityType | Should -MatchExactly $regEx_PascalCase
}
}
}
It 'Entity IP, URL and DNS should be in Capitals | <Name>' -TestCases $testCases {
param (
$file,
$yamlObject
)
$entityTypes = $yamlObject.entityMappings.entityType
foreach ($entityType in $entityTypes) {
if ($entityType -eq "IP" -or $entityType -eq "URL" -or $entityType -eq "DNS") {
$entityType | Should -MatchExactly '^[A-Z]+(?:[A-Z]+)*$'
}
}
}
It 'Query Frequency should be a valid format | <Name>' -TestCases $testCases {
param (
$file,
$yamlObject
)
if($yamlObject.kind -eq 'Scheduled') {
$yamlObject.queryFrequency | Should -MatchExactly $regEx_yamlTime
}
}
It 'Query Period should be a valid format | <Name>' -TestCases $testCases {
param (
$file,
$yamlObject
)
if ($yamlObject.kind -eq 'Scheduled') {
$yamlObject.queryPeriod | Should -MatchExactly $regEx_yamlTime
}
}
It 'Query Frequency should be less or equal than Query Period | <Name>' -TestCases $testCases {
param (
$file,
$yamlObject
)
function Convert-Time($value) {
switch -wildcard ($value) {
"*d*" {
$result = New-TimeSpan -Days $value.replace('d', '')
}
"*h*" {
$result = New-TimeSpan -Hours $value.replace('h', '')
}
"*m*" {
$result = New-TimeSpan -Minutes $value.replace('m', '')
}
Default {}
}
return $result
}
if ($yamlObject.kind -eq 'Scheduled') {
$queryFrequency = Convert-Time -value "$($yamlObject.queryFrequency)"
$queryPeriod = Convert-Time -value "$($yamlObject.queryPeriod)"
$queryFrequency.TotalMinutes | Should -BeLessOrEqual $queryPeriod.TotalMinutes
}
}
It 'Query Frequency should be more than 60 minutes when Period is greater or equal than 2 days | <Name>' -TestCases $testCases {
param (
$file,
$yamlObject
)
function Convert-Time($value) {
switch -wildcard ($value) {
"*d*" {
$result = New-TimeSpan -Days $value.replace('d', '')
}
"*h*" {
$result = New-TimeSpan -Hours $value.replace('h', '')
}
"*m*" {
$result = New-TimeSpan -Minutes $value.replace('m', '')
}
Default {}
}
return $result
}
if ($yamlObject.kind -eq 'Scheduled') {
$queryFrequency = Convert-Time -value "$($yamlObject.queryFrequency)"
$queryPeriod = Convert-Time -value "$($yamlObject.queryPeriod)"
if ($queryPeriod.TotalDays -ge 2) {
$queryFrequency.TotalMinutes | Should -BeGreaterThan 59
}
}
}
}
}