-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathglobalConfig.json
632 lines (632 loc) · 25.6 KB
/
globalConfig.json
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
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
{
"meta": {
"name": "misp42splunk",
"restRoot": "misp42splunk",
"displayName": "misp42",
"version": "4.4.0",
"schemaVersion": "0.0.7",
"_uccVersion": "5.50.1"
},
"pages": {
"configuration": {
"title": "Configuration",
"description": "Set up your add-on",
"tabs": [
{
"name": "instances",
"title": "MISP instances",
"table": {
"header": [
{
"field": "name",
"label": "MISP instance"
},
{
"field": "misp_url",
"label": "MISP url"
}
],
"actions": [
"edit",
"delete",
"clone"
]
},
"entity": [
{
"field": "name",
"label": "MISP instance",
"type": "text",
"required": true,
"help": "Enter a unique name for this MISP instance.",
"validators": [
{
"type": "string",
"minLength": 1,
"maxLength": 50,
"errorMsg": "Length of MISP instance name should be between 1 and 50"
},
{
"type": "regex",
"pattern": "^[a-zA-Z]\\w*$",
"errorMsg": "MISP instance name must start with a letter and followed by alphabetic letters, digits or underscores."
}
]
},
{
"required": true,
"label": "MISP url",
"tooltip": "https://mymisp.instance.org:port",
"field": "misp_url",
"validators": [
{
"pattern": "^https://[0-9a-zA-Z\\-\\.]+(?:\\:\\d+)?",
"errorMsg": "Invalid URL; it must start with https.",
"type": "regex"
}
],
"help": "provide base MISP URL starting with https://",
"type": "text"
},
{
"field": "misp_key",
"required": true,
"label": "MISP API key",
"tooltip": "***AUTH KEY***",
"encrypted": true,
"validators": [
{
"minLength": 0,
"errorMsg": "Max length of password is 8192",
"maxLength": 8192,
"type": "string"
}
],
"help": "provide one authkey for the instance",
"type": "text"
},
{
"required": false,
"label": "Check MISP certificate",
"field": "misp_verifycert",
"defaultValue": true,
"help": "",
"type": "checkbox"
},
{
"required": false,
"label": "MISP CA path",
"field": "misp_ca_full_path",
"validators": [
{
"minLength": 0,
"errorMsg": "Max length of text input is 8192",
"maxLength": 8192,
"type": "string"
}
],
"help": "Provide full path to CA file (pem, crt)",
"type": "text"
},
{
"required": false,
"field": "misp_use_proxy",
"help": "Use proxy settings for this instance",
"label": "Use proxy settings",
"type": "checkbox"
},
{
"required": false,
"field": "client_use_cert",
"help": "Use a client certificate to authenticate on this instance",
"label": "Use a client certificate",
"type": "checkbox"
},
{
"required": false,
"label": "Client certificate file ",
"field": "client_cert_full_path",
"validators": [
{
"minLength": 0,
"errorMsg": "Max length of text input is 8192",
"maxLength": 8192,
"type": "string"
}
],
"help": "Provide full path to client certificate file ",
"type": "text"
}
]
},
{
"options": {
"saveValidator": "function(formData) { if(!formData.proxy_enabled || formData.proxy_enabled === '0') {return true; } if(!formData.proxy_hostname) { return 'Proxy Host can not be empty'; } if(!formData.proxy_port) { return 'Proxy Port can not be empty'; } return true; }"
},
"name": "proxy",
"entity": [
{
"field": "proxy_enabled",
"label": "Enable",
"type": "checkbox"
},
{
"options": {
"disableSearch": true,
"autoCompleteFields": [
{
"label": "http",
"value": "http"
},
{
"label": "socks4",
"value": "socks4"
},
{
"label": "socks5",
"value": "socks5"
}
]
},
"field": "proxy_type",
"defaultValue": "http",
"label": "Proxy Type",
"type": "singleSelect"
},
{
"validators": [
{
"minLength": 0,
"errorMsg": "Max host length is 4096",
"maxLength": 4096,
"type": "string"
}
],
"field": "proxy_hostname",
"label": "Host",
"type": "text"
},
{
"validators": [
{
"range": [
1,
65535
],
"type": "number"
}
],
"field": "proxy_port",
"label": "Port",
"type": "text"
},
{
"validators": [
{
"minLength": 0,
"errorMsg": "Max length of username is 50",
"maxLength": 50,
"type": "string"
}
],
"field": "proxy_username",
"label": "Username",
"type": "text"
},
{
"encrypted": true,
"validators": [
{
"minLength": 0,
"errorMsg": "Max length of password is 8192",
"maxLength": 8192,
"type": "string"
}
],
"field": "proxy_password",
"label": "Password",
"type": "text"
},
{
"field": "proxy_rdns",
"label": "Remote DNS resolution",
"type": "checkbox"
}
],
"title": "Proxy"
},
{
"type": "loggingTab"
}
]
}
},
"alerts": [
{
"name": "misp_alert_create_event",
"label": "MISP Create Event",
"description": "Create events in MISP (alert action)",
"adaptiveResponse": {
"task": [
"Create",
"Update"
],
"supportsAdhoc": true,
"subject": [
"endpoint"
],
"category": [
"Cyber Security",
"Threat Intelligence"
],
"technology": [
{
"version": [
"2.4.119"
],
"product": "MISP",
"vendor": "MISP"
}
],
"drilldownUri": "search?q=search%20index%3D\"_internal\"&earliest=0&latest=",
"sourcetype": "misp:misp_alert_create_event",
"supportsCloud": true
},
"entity": [
{
"type": "singleSelectSplunkSearch",
"label": "Select MISP instance",
"field": "misp_instance",
"search": "| rest /services/configs/conf-misp42splunk_instances | dedup title",
"valueField": "title",
"labelField": "title",
"help": "Select the MISP instance from the dropdown",
"required": true
},
{
"type": "text",
"label": "Title",
"field": "title",
"defaultValue": "*",
"required": true,
"help": "The title of this alert."
},
{
"type": "text",
"label": "Description",
"field": "description",
"defaultValue": "*",
"required": true,
"help": "The description to send with the alert."
},
{
"type": "text",
"label": "Event (UU)ID",
"field": "eventid",
"defaultValue": "",
"required": false,
"help": "To update an existing MISP event, provide a valid event UUID or ID or a field name containing it."
},
{
"type": "text",
"label": "Unique ID",
"field": "unique",
"defaultValue": "",
"required": false,
"help": "A field name that contains a unique identifier per MISP event to be created. All row sharing same identifier value will be merged into the same MISP event."
},
{
"type": "text",
"label": "MISP Info",
"field": "info",
"defaultValue": "",
"required": false,
"help": "The default Info field for the MISP events if not provided in results."
},
{
"type": "singleSelect",
"label": "Distribution",
"field": "distribution",
"options": {
"items": [
{
"value": "0",
"label": "Your organisation only"
},
{
"value": "1",
"label": "This community only"
},
{
"value": "2",
"label": "Connected communities"
},
{
"value": "3",
"label": "All communities"
},
{
"value": "4",
"label": "Sharing Group"
}
]
},
"help": "Change the Distribution. Defaults to \"Your organisation only\".",
"required": true,
"defaultValue": "0"
},
{
"type": "singleSelect",
"label": "Threat level",
"field": "threatlevel",
"options": {
"items": [
{
"value": "1",
"label": "High"
},
{
"value": "2",
"label": "Medium"
},
{
"value": "3",
"label": "Low"
},
{
"value": "4",
"label": "Undefined"
}
]
},
"help": "Change the Threat Level. Defaults to \"Undefined\".",
"required": true,
"defaultValue": "4"
},
{
"type": "singleSelect",
"label": "Analysis",
"field": "analysis",
"options": {
"items": [
{
"value": "0",
"label": "Initial"
},
{
"value": "1",
"label": "Ongoing"
},
{
"value": "2",
"label": "Complete"
}
]
},
"help": "Change Analysis status. Default to Initial",
"required": true,
"defaultValue": "0"
},
{
"type": "singleSelect",
"label": "TLP",
"field": "tlp",
"options": {
"items": [
{
"value": "TLP_WHITE",
"label": "WHITE"
},
{
"value": "TLP_CLEAR",
"label": "CLEAR"
},
{
"value": "TLP_GREEN",
"label": "GREEN"
},
{
"value": "TLP_AMBER",
"label": "AMBER"
},
{
"value": "TLP_AMBER+STRICT",
"label": "AMBER+STRICT"
},
{
"value": "TLP_RED",
"label": "RED"
},
{
"value": "TLP_UNCLEAR",
"label": "UNCLEAR"
},
{
"value": "TLP_EX_CHR",
"label": "EX_CHR"
}
]
},
"help": "Change the TLP of the created alert. Defaults to TLP:AMBER",
"required": true,
"defaultValue": "TLP_AMBER"
},
{
"type": "singleSelect",
"label": "PAP",
"field": "pap",
"options": {
"items": [
{
"value": "PAP_WHITE",
"label": "WHITE"
},
{
"value": "PAP_GREEN",
"label": "GREEN"
},
{
"value": "PAP_AMBER",
"label": "AMBER"
},
{
"value": "PAP_RED",
"label": "RED"
}
]
},
"help": "Permissible Actions Protocol. Default to PAP:RED",
"required": true,
"defaultValue": "PAP_RED"
},
{
"type": "singleSelect",
"label": "Publish event on creation? ",
"field": "publish_on_creation",
"options": {
"items": [
{
"value": "0",
"label": "NO"
},
{
"value": "1",
"label": "YES"
}
]
},
"help": "By default events are not published at time of creation (No).",
"required": true,
"defaultValue": "0"
},
{
"type": "text",
"label": "MISP Tags",
"field": "tags",
"defaultValue": "",
"required": false,
"help": "Use single comma-separated string without quotes for multiple tags (eg. badIP,spam)."
}
]
},
{
"name": "misp_alert_sighting",
"label": "Alert for sighting MISP attribute(s)",
"description": "Increment sighting counters for attributes in MISP (alert action)",
"adaptiveResponse": {
"task": [
"Create",
"Update"
],
"supportsAdhoc": true,
"subject": [
"endpoint"
],
"category": [
"Cyber Security",
"Threat Intelligence"
],
"technology": [
{
"version": [
"2.4.119"
],
"product": "MISP",
"vendor": "MISP"
}
],
"drilldownUri": "search?q=search%20index%3D\"_internal\"&earliest=0&latest=",
"sourcetype": "misp:misp_alert_sighting",
"supportsCloud": true
},
"entity": [
{
"type": "singleSelectSplunkSearch",
"label": "Select MISP instance",
"field": "misp_instance",
"search": "| rest /services/configs/conf-misp42splunk_instances | dedup title",
"valueField": "title",
"labelField": "title",
"help": "Select the MISP instance from the dropdown",
"required": true
},
{
"type": "text",
"label": "Title",
"field": "title",
"defaultValue": "*",
"required": true,
"help": "The title of this alert."
},
{
"type": "text",
"label": "Description",
"field": "description",
"defaultValue": "*",
"required": false,
"help": "The description to send with the alert."
},
{
"type": "text",
"label": "Unique ID",
"field": "unique",
"defaultValue": "",
"required": false,
"help": "A field name that contains timestamps ( _time, strptime() etc.). if not defined or not present, default to now()"
},
{
"type": "text",
"label": "Source",
"field": "source",
"defaultValue": "",
"required": false,
"help": "Source for sighting. You may provide a field name."
},
{
"type": "radio",
"label": "Mode:",
"field": "mode",
"options": {
"items": [
{
"value": "byvalue",
"label": "Sighting for matching values"
},
{
"value": "byuuid",
"label": "Sighting for matching attributes UUID"
}
]
},
"help": "Set mode for sighting. Default to \"matching values\"",
"required": false,
"defaultValue": "byvalue"
},
{
"type": "radio",
"label": "Type:",
"field": "type",
"options": {
"items": [
{
"value": "0",
"label": "Sighting type 0: (default STIX interpretation of a sighting)."
},
{
"value": "1",
"label": "Sighting type 1: this sighting has been interpreted as a false-positive by the organisation."
},
{
"value": "2",
"label": "Sighting type 2: expiration sighting which defines when the sighted attribute is to be expired."
}
]
},
"help": "Set type of sighting.",
"required": false,
"defaultValue": "0"
}
]
}
]
}