-
Notifications
You must be signed in to change notification settings - Fork 3
/
dictionary.json
672 lines (672 loc) · 23.7 KB
/
dictionary.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
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
{
"caption": "Attribute Dictionary",
"description": "The Attribute Dictionary defines schema attributes and includes references to the events and objects in which they are used.",
"name": "dictionary",
"attributes": {
"account": {
"caption": "Account",
"description": "The account object describes details about the account that was the source or target of the activity.",
"type": "account"
},
"analytic": {
"caption": "Analytic",
"description": "The analytic technique used to analyze and derive insights from the data or information that led to the finding or conclusion.",
"type": "analytic"
},
"analytic_stories": {
"caption": "Analytic Stories",
"description": "The analytic stories associated with the detection.",
"is_array": true,
"type": "string_t"
},
"autonomous_system": {
"caption": "Autonomous System",
"description": "The Autonomous System details associated with an IP address.",
"type": "autonomous_system"
},
"auth_factors": {
"caption": "Authentication Factors",
"description": "Describes a category of methods used for identity verification in an authentication attempt.",
"type": "auth_factor",
"is_array": true
},
"caller": {
"caption": "Caller",
"description": "The point of origin from which the action was directed. Its values are derived via business logic. This usually represents the inferred source entity for a logon.",
"type": "inference"
},
"category": {
"caption": "Category",
"description": "The object category. See specific usage.",
"type": "string_t"
},
"category_id": {
"caption": "Category ID",
"description": "The normalized identifier of the object category. See specific usage.",
"sibling": "category",
"type": "integer_t"
},
"client_interface": {
"caption": "Client Interface",
"description": "The client interface. See specific usage.",
"type": "network_interface"
},
"confidence_score": {
"caption": "Confidence Score",
"description": "The confidence score as reported by the event source.",
"type": "integer_t"
},
"coordinates": {
"@deprecated": {
"message": "Use specific <code> lat, long </code> attributes instead.",
"since": "1.2.0"
},
"caption": "Coordinates",
"description": "A two-element array, containing a longitude/latitude pair. The format conforms with <a target='_blank' href='https://geojson.org'>GeoJSON</a>. For example: <code>[-73.983, 40.719]</code>.",
"is_array": true,
"type": "float_t"
},
"cis_csc": {
"caption": "CIS CSC",
"description": "The CIS Critical Security Controls is a list of top 20 actions and practices an organization’s security team can take on such that cyber attacks or malware, are minimized and prevented.",
"is_array": true,
"type": "cis_control"
},
"confidence_id": {
"caption": "Confidence ID",
"description": "The normalized confidence level refers to the accuracy of the rule that created the finding. A rule with a low confidence level means that the detection scope is wide and may create finding reports that may not be malicious in nature.",
"enum": {
"0": {
"caption": "Unknown",
"description": "No confidence is assigned."
},
"1": {
"caption": "Low"
},
"2": {
"caption": "Medium"
},
"3": {
"caption": "High"
},
"99": {
"caption": "Other",
"description": "The confidence is not mapped to the defined enum values. See the <code>confidence</code> attribute, which contains a data source specific value."
}
},
"type": "integer_t"
},
"control": {
"caption": "Control",
"description": "The CIS critical security control.",
"type": "string_t"
},
"database": {
"caption": "Database",
"description": "The database object is used for databases which are typically datastore services that contain an organized collection of structured and unstructured data or a types of data.",
"type": "database"
},
"databucket": {
"caption": "Databucket",
"description": "The data bucket object is a basic container that holds data, typically organized through the use of data partitions.",
"type": "databucket"
},
"data_classification": {
"caption": "Data Classification",
"description": "The Data Classification object includes information about data classification levels and data category types.",
"type": "data_classification"
},
"data_sources": {
"caption": "Data Sources",
"description": "The data sources for the detection.",
"is_array": true,
"type": "string_t"
},
"devices": {
"caption": "Devices",
"description": "The devices that are identified in reported the events.",
"is_array": true,
"type": "device"
},
"domain": {
"caption": "Domain",
"description": "The name of the domain. See specific usage.",
"type": "string_t"
},
"domains": {
"caption": "Domains",
"description": "The domains that pertain to the event or object. See specific usage.",
"type": "string_t",
"is_array": true
},
"email_addresses": {
"caption": "Email Addresses",
"description": "The user's additional email addresses.",
"is_array": true,
"type": "email_t"
},
"end_date": {
"caption": "End Date",
"description": "The end date of a user's employment.",
"type": "timestamp_t"
},
"event_code": {
"caption": "Event Code",
"description": "The Event ID or Code that the product uses to describe the event.",
"type": "string_t"
},
"evidence": {
"caption": "Evidence",
"description": "The data the detection exposes to the analyst.",
"type": "json_t"
},
"evidences": {
"caption": "Evidence Artifacts",
"description": "Describes various evidence artifacts associated to the activity/activities that triggered a security detection.",
"type": "evidences",
"is_array": true
},
"factor_type": {
"caption": "Factor Type",
"description": "The type of authentication factor used in an authentication attempt.",
"type": "string_t"
},
"factor_type_id": {
"caption": "Factor Type ID",
"description": "The normalized identifier for the authentication factor.",
"sibling": "factor_type",
"type": "integer_t",
"enum": {
"0": {
"caption": "Unknown"
},
"1": {
"caption": "SMS",
"description": "User receives and inputs a code sent to their mobile device via SMS text message."
},
"2": {
"caption": "Security Question",
"description": "The user responds to a security question as part of a question-based authentication factor"
},
"3": {
"caption": "Phone Call",
"description": "System calls the user's registered phone number and requires the user to answer and provide a response."
},
"4": {
"caption": "Biometric",
"description": "Devices that verify identity-based on user's physical identifiers, such as fingerprint scanners or retina scanners."
},
"5": {
"caption": "Push Notification",
"description": "Push notification is sent to user's registered device and requires the user to acknowledge."
},
"6": {
"caption": "Hardware Token",
"description": "Physical device that generates a code to be used for authentication."
},
"7": {
"caption": "OTP",
"description": "Application generates a one-time password (OTP) for use in authentication."
},
"8": {
"caption": "Email",
"description": "A code or link is sent to a user's registered email address."
},
"9": {
"caption": "U2F",
"description": "Typically involves a hardware token, which the user physically interacts with to authenticate."
},
"10": {
"caption": "WebAuthn",
"description": "Web-based API that enables users to register devices as authentication factors."
},
"11": {
"caption": "Password",
"description": "The user enters a password that they have previously established."
},
"99": {
"caption": "Other"
}
}
},
"files": {
"caption": "Files",
"description": "The files that are part of the event or object.",
"type": "file",
"is_array": true
},
"finding_info": {
"caption": "Finding Information",
"description": "Describes the supporting information about a generated finding.",
"type": "finding_info"
},
"forward_addr": {
"caption": "Forwarding Address",
"description": "The user's forwarding email address.",
"type": "email_t"
},
"full_name": {
"caption": "Full Name",
"description": "The user's full name.",
"type": "string_t"
},
"geohash": {
"caption": "Geohash",
"description": "<p>Geohash of the geo-coordinates (latitude and longitude).</p><a target='_blank' href='https://en.wikipedia.org/wiki/Geohash'>Geohashing</a> is a geocoding system used to encode geographic coordinates in decimal degrees, to a single string.",
"type": "string_t"
},
"home_folder": {
"caption": "Home",
"description": "The user's home folder.",
"type": "path_t"
},
"hostnames": {
"caption": "Hostname List",
"description": "The hostnames of an endpoint or a device.",
"is_array": true,
"type": "hostname_t"
},
"impact": {
"caption": "Impact",
"description": "The impact of the detection, valid range 0-100.",
"type": "integer_t"
},
"impact_id": {
"caption": "Impact ID",
"description": "The normalized impact of the detection.",
"enum": {
"0": {
"caption": "Unknown"
},
"1": {
"caption": "Low"
},
"2": {
"caption": "Medium"
},
"3": {
"caption": "High"
},
"4": {
"caption": "Critical"
},
"5": {
"caption": "Fatal"
},
"99": {
"caption": "Other",
"description": "The detection impact is not mapped. See the <code>impact</code> attribute, which contains a data source specific value."
}
},
"type": "integer_t"
},
"impact_score": {
"caption": "Impact",
"description": "The impact of the finding, valid range 0-100.",
"type": "integer_t"
},
"ips": {
"caption": "IP List",
"description": "The IP addresses of an endpoint or a device.",
"is_array": true,
"type": "ip_t"
},
"is_hotp": {
"caption": "HMAC-based One-time Password (HOTP)",
"description": "Whether the authentication factor is an HMAC-based One-time Password (HOTP).",
"type": "boolean_t"
},
"is_new_logon": {
"caption": "New Logon",
"description": "Indicates logon is from a device not seen before or a first time account logon.",
"type": "boolean_t"
},
"is_vpn": {
"caption": "VPN Session",
"description": "The indication of whether the session is a VPN session.",
"type": "boolean_t"
},
"is_totp": {
"caption": "Time-based One-time Password (TOTP)",
"description": "Whether the authentication factor is a Time-based One-time Password (TOTP).",
"type": "boolean_t"
},
"kill_chain": {
"caption": "Kill Chain",
"description": "The <a target='_blank' href='https://www.lockheedmartin.com/en-us/capabilities/cyber/cyber-kill-chain.html'>Cyber Kill Chain®</a>.",
"is_array": true,
"type": "kill_chain"
},
"lat": {
"caption": "Latitude",
"description": "The geographical Latitude coordinate represented in Decimal Degrees (DD). For example: <code>42.361145</code>.",
"type": "float_t"
},
"log_level": {
"caption": "Log Level",
"description": "The audit level at which an event was generated.",
"type": "string_t"
},
"log_name": {
"caption": "Log Name",
"description": "The event log name. For example, syslog file name or Windows logging subsystem: Security.",
"type": "string_t"
},
"log_provider": {
"caption": "Log Provider",
"description": "The logging provider or logging service that logged the event. For example, Microsoft-Windows-Security-Auditing.",
"type": "string_t"
},
"log_type": {
"caption": "Log Type",
"description": "The log type, normalized to the caption of the <code>log_type_id</code> value. In the case of 'Other', it is defined by the event source.",
"type": "string_t"
},
"log_type_id": {
"caption": "Log Type ID",
"description": "The normalized log type identifier.",
"enum": {
"0": {
"caption": "Unknown",
"description": "The log type is unknown."
},
"1": {
"caption": "OS",
"description": "The log type is an Operating System log."
},
"2": {
"caption": "Application",
"description": "The log type is an Application log."
},
"99": {
"caption": "Other",
"description": "The log type is not mapped. See the <code>log_type</code> attribute, which contains a data source specific value."
}
},
"sibling": "log_type",
"type": "integer_t"
},
"log_version": {
"caption": "Log Version",
"description": "The event log schema version that specifies the format of the original event. For example syslog version or Cisco Log Schema Version.",
"type": "string_t"
},
"loggers": {
"caption": "Loggers",
"description": "An array of Logger objects that describe the devices and logging products between the event source and its eventual destination. Note, this attribute can be used when there is a complex end-to-end path of event flow.",
"is_array": true,
"type": "logger"
},
"long": {
"caption": "Longitude",
"description": "The geographical Longitude coordinate represented in Decimal Degrees (DD). For example: <code>-71.057083</code>.",
"type": "float_t"
},
"macs": {
"caption": "MAC List",
"description": "The Media Access Control (MAC) addresses of an endpoint or a device.",
"is_array": true,
"type": "mac_t"
},
"managed_by": {
"caption": "Managed By",
"description": "The distinguished name of the user that is assigned to manage this object.",
"type": "string_t"
},
"message_trace_uid": {
"caption": "Message Trace UID",
"description": "The identifier that tracks a message that travels through multiple points of a messaging service.",
"references": [{"url": "https://learn.microsoft.com/en-us/previous-versions/office/developer/o365-enterprise-developers/jj984335(v=office.15)", "description": "For example Office 365 Message Trace Report."}],
"type": "string_t"
},
"nicknames": {
"caption": "Nicknames",
"description": "The user's nicknames.",
"is_array": true,
"type": "string_t"
},
"nist": {
"caption": "NIST List",
"description": "The NIST Cybersecurity Framework recommendations for managing the cybersecurity risk.",
"is_array": true,
"type": "string_t"
},
"nt_hosts": {
"caption": "Network Host List",
"description": "The network hosts of an endpoint or a device.",
"is_array": true,
"type": "string_t"
},
"number": {
"caption": "Number",
"description": "The number of the entity. See specific usage.",
"type": "integer_t"
},
"org": {
"caption": "Organization",
"description": "Organization and org unit relevant to the event or object.",
"type": "organization"
},
"ou_name": {
"caption": "Org Unit Name",
"description": "The name of the organizational unit, within an organization. For example, Finance, IT, R&D",
"type": "string_t"
},
"ou_uid": {
"caption": "Org Unit ID",
"description": "The alternate identifier for an entity's unique identifier. For example, its Active Directory OU DN or AWS OU ID.",
"type": "string_t"
},
"owners": {
"caption": "Owners",
"description": "List of names of the services or user accounts that own the resource.",
"is_array": true,
"type": "string_t"
},
"pci_domains": {
"caption": "PCI Domains",
"description": "List of the PCI domains of an endpoint or device.",
"is_array": true,
"type": "string_t"
},
"phase": {
"caption": "Kill Chain Phase",
"description": "The cyber kill chain phase.",
"type": "string_t"
},
"phase_id": {
"caption": "Kill Chain Phase ID",
"description": "The cyber kill chain phase identifier.",
"enum": {
"0": {
"caption": "Unknown",
"description": "The kill chain phase is unknown."
},
"1": {
"caption": "Reconnaissance",
"description": "The attackers pick a target and perform a detailed analysis, start collecting information (email addresses, conferences information, etc.) and evaluate the victim’s vulnerabilities to determine how to exploit them."
},
"2": {
"caption": "Weaponization",
"description": "The attackers develop a malware weapon and aim to exploit the discovered vulnerabilities."
},
"3": {
"caption": "Delivery",
"description": "The intruders will use various tactics, such as phishing, infected USB drives, etc."
},
"4": {
"caption": "Exploitation",
"description": "The intruders start leveraging vulnerabilities to executed code on the victim’s system."
},
"5": {
"caption": "Installation",
"description": "The intruders install malware on the victim’s system."
},
"6": {
"caption": "Command & Control",
"description": "Malware opens a command channel to enable the intruders to remotely manipulate the victim's system."
},
"7": {
"caption": "Actions on Objectives",
"description": "With hands-on keyboard access, intruders accomplish the mission’s goal."
},
"99": {
"caption": "Other"
}
},
"type": "integer_t",
"sibling": "phase"
},
"phone_number": {
"caption": "Phone Number",
"description": "The number associated with the phone.",
"type": "string_t"
},
"phones": {
"caption": "Phones",
"description": "The list of phone numbers.",
"is_array": true,
"type": "string_t"
},
"public_ip": {
"caption": "Public IP",
"description": "The public IP address of an endpoint or a device.",
"type": "ip_t"
},
"related_analytics": {
"caption": "Related Analytics",
"description": "Describes analytics related to the analytic of a finding or detection as identified by the security product.",
"is_array": true,
"type": "analytic"
},
"risk_details": {
"caption": "Risk Details",
"description": "Describes the risk associated with the finding.",
"type": "string_t"
},
"security_questions": {
"caption": "Security Questions",
"description": "The question(s) provided to user for a question-based authentication factor.",
"type": "string_t",
"is_array": true
},
"share": {
"caption": "Share",
"description": "The share name. See specific usage.",
"type": "string_t"
},
"share_type": {
"caption": "Share Type",
"description": "The share type, normalized to the caption of the share_type_id value. In the case of 'Other', it is defined by the event source.",
"type": "string_t"
},
"share_type_id": {
"caption": "Share Type Id",
"description": "The normalized identifier of the share type.",
"enum": {
"99": {
"caption": "Other",
"description": "The share type is not mapped. See the <code>share_type</code> attribute, which contains a data source specific value."
},
"0": {
"caption": "Unknown",
"description": "The share type is unknown."
},
"1": {
"caption": "File"
},
"2": {
"caption": "Pipe"
},
"3": {
"caption": "Print"
}
},
"sibling": "share_type",
"type": "integer_t"
},
"shell": {
"caption": "Shell",
"description": "The user's login shell.",
"type": "string_t"
},
"source": {
"caption": "Source",
"description": "The <a target='_blank' href='https://docs.splunk.com/Splexicon:Source'>source</a> of an event is the data input from which it originates. In the case of data monitored from files and directories, the source consists of the full pathname of the file or directory. In the case of a network-based source, the source field consists of the protocol and port, such as UDP:514.",
"type": "string_t"
},
"source_type": {
"caption": "Source Type",
"description": "The source type of an event is the format of the data input from which it originates.",
"type": "string_t"
},
"start_date": {
"caption": "Start Date",
"description": "The start date of a user's employment.",
"type": "timestamp_t"
},
"tags": {
"caption": "Tags",
"description": "The list of tags; <code>{key:value}</code> pairs attached to an entity. A Tag may be used to categorize, filter, and search for entities. For e.g. <code>\"Environment\": \"Production\"</code>, <code>\"Owner\": \"007\"</code>. See specific usage.",
"type": "key_value_object",
"is_array": true
},
"target": {
"caption": "Target",
"description": "The desired entity towards which the action is directed. Its values are derived via business logic. This usually represents the inferred destination entity for a logon.",
"type": "inference"
},
"transmit_time": {
"caption": "Transmission Time",
"description": "The event transmission time from one device to another. See specific usage",
"type": "timestamp_t"
},
"tunnel_interface": {
"caption": "Tunnel Interface",
"description": "The interface of a tunnel. In a tunnelled session, this is the virtual interface. Ex: <code>utun1</code>. The IP is usually a private (local rfc-1918) IP.",
"type": "network_interface"
},
"tunnel_type": {
"caption": "Type",
"description": "The tunnel type. See specific usage.",
"type": "string_t"
},
"tunnel_type_id": {
"caption": "Type",
"description": "The normalized tunnel type ID.",
"sibling": "tunnel_type",
"type": "integer_t"
},
"urls": {
"caption": "URLs",
"description": "The URLs that pertain to the event or object.",
"type": "url",
"is_array": true
},
"users": {
"caption": "Users",
"description": "The users that are identified in reported the events.",
"is_array": true,
"type": "user"
}
},
"types": {
"attributes": {
"bytestring_t": {
"type": "string_t"
},
"file_hash_t": {
"type": "string_t"
},
"resource_uid_t": {
"type": "string_t"
},
"subnet_t": {
"type": "string_t"
},
"uuid_t": {
"type": "string_t"
}
}
}
}