-
Notifications
You must be signed in to change notification settings - Fork 133
/
dictionary.json
5195 lines (5195 loc) · 194 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
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"caption": "Attribute Dictionary",
"description": "The Attribute Dictionary defines attributes and includes references to the events and objects in which they are used.",
"name": "dictionary",
"attributes": {
"access_list": {
"caption": "Access List",
"description": "The list of requested access rights.",
"type": "string_t",
"is_array": true
},
"access_mask": {
"caption": "Access Mask",
"description": "The access mask in a platform-native format.",
"type": "integer_t"
},
"access_result": {
"caption": "Access Check Result",
"description": "The list of access check results.",
"type": "json_t"
},
"accessed_time": {
"caption": "Accessed Time",
"description": "The time when the file was last accessed.",
"type": "timestamp_t"
},
"accessor": {
"caption": "Accessor",
"description": "The name of the user who last accessed the object.",
"type": "user"
},
"account": {
"caption": "Account",
"description": "The account object describes details about the account that was the source or target of the activity.",
"type": "account"
},
"ack_reason": {
"caption": "Acknowledgement Reason",
"description": "An integer that provides a reason code or additional information about the acknowledgment result.",
"type": "integer_t"
},
"ack_result": {
"caption": "Acknowledgement Result",
"description": "An integer that denotes the acknowledgment result of the DCE/RPC call.",
"type": "integer_t"
},
"action": {
"caption": "Action",
"description": "The normalized caption of 'action_id' or the source specific action.",
"type": "string_t"
},
"action_id": {
"caption": "Action ID",
"description": "The normalized action taken by a control or other policy-based system leading to an outcome or disposition.",
"sibling": "action",
"type": "integer_t",
"enum": {
"0": {
"caption": "Unknown",
"description": "The action was unknown."
},
"1": {
"caption": "Allowed",
"description": "The activity was allowed."
},
"2": {
"caption": "Denied",
"description": "The attempted activity was denied."
},
"99": {
"caption": "Other",
"description": "The action was not mapped. See the <code>action</code> attribute, which contains a data source specific value."
}
}
},
"activity_id": {
"caption": "Activity ID",
"description": "The normalized identifier of the activity that triggered the event.",
"sibling": "activity_name",
"type": "integer_t",
"enum": {
"0": {
"caption": "Unknown",
"description": "The event activity is unknown."
},
"99": {
"caption": "Other",
"description": "The event activity is not mapped. See the <code>activity_name</code> attribute, which contains a data source specific value."
}
},
"suppress_checks": [
"sibling_convention"
]
},
"activity_name": {
"caption": "Activity",
"description": "The event activity name, as defined by the activity_id.",
"type": "string_t"
},
"actor": {
"caption": "Actor",
"description": "The actor object describes details about the user/role/process that was the source of the activity.",
"type": "actor"
},
"actual_permissions": {
"caption": "Actual Permissions",
"description": "The permissions that were granted in a platform-native format. See specific usage.",
"type": "integer_t"
},
"advisory": {
"caption": "Security Advisory",
"description": "Detail about the security advisory, that is used to publicly disclose cybersecurity vulnerabilities by a vendor.",
"type": "advisory"
},
"aerial_height": {
"caption": "Aerial Height",
"description": "Expressed as either height above takeoff location or height above ground level (AGL) for a UAS current location. This value is provided in meters and must have a minimum resolution of 1 m. Special Values: <code>Invalid</code>, <code>No Value</code>, or <code>Unknown: -1000 m</code>.",
"type": "string_t"
},
"affected_code": {
"caption": "Affected Code",
"description": "List of Affected Code objects that describe details about code blocks identified as vulnerable.",
"type": "affected_code",
"is_array": true
},
"affected_packages": {
"caption": "Affected Software Packages",
"description": "List of software packages identified as affected by a vulnerability/vulnerabilities.",
"type": "affected_package",
"is_array": true
},
"agent": {
"caption": "Agent",
"description": "An Agent (also known as a Sensor) is typically installed on an Operating System (OS) and serves as a specialized software component that can be designed to monitor, detect, collect, archive, or take action. These activities and possible actions are defined by the upstream system controlling the Agent and its intended purpose. For instance, an Agent can include Endpoint Detection & Response (EDR) agents, backup/disaster recovery sensors, Application Performance Monitoring or profiling sensors, and similar software.",
"type": "agent"
},
"agent_list": {
"caption": "Agent List",
"description": "A list of <code>agent</code> objects associated with a device, endpoint, or resource.",
"type": "agent",
"is_array": true
},
"alert": {
"caption": "Client TLS Alert",
"description": "The integer value of TLS alert if present. The alerts are defined in the TLS specification in <a target='_blank' href='https://datatracker.ietf.org/doc/html/rfc2246'>RFC-2246</a>.",
"type": "integer_t"
},
"algorithm": {
"caption": "Algorithm",
"description": "The applicable algorithm, normalized to the caption of 'algorithm_id'. See specific usage.",
"type": "string_t"
},
"algorithm_id": {
"caption": "Algorithm ID",
"description": "The normalized identifier of the algorithm. See specific usage.",
"sibling": "algorithm",
"type": "integer_t",
"enum": {
"0": {
"caption": "Unknown",
"description": "The algorithm is unknown."
},
"99": {
"caption": "Other",
"description": "The algorithm is not mapped. See the <code>algorithm</code> attribute, which contains a data source specific value."
}
}
},
"altitude_ceiling": {
"caption": "Altitude Ceiling",
"description": "Maximum altitude (WGS-84 HAE) for a group or an Intent-Based Network Participant. Measured in meters. Special Values: <code>Invalid</code>, <code>No Value</code>, or <code>Unknown: -1000 m</code>.",
"type": "string_t"
},
"altitude_floor": {
"caption": "Altitude Floor",
"description": "Minimum altitude (WGS-84 HAE) for a group or an Intent-Based Network Participant. Measured in meters. Special Values: <code>Invalid</code>, <code>No Value</code>, or <code>Unknown: -1000 m</code>.",
"type": "string_t"
},
"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"
},
"answers": {
"caption": "DNS Answer",
"description": "The Domain Name System (DNS) answers.",
"type": "dns_answer",
"is_array": true
},
"api": {
"caption": "API Details",
"description": "Describes details about a typical API (Application Programming Interface) call.",
"type": "api"
},
"app": {
"caption": "Application",
"description": "The application that reported the event.",
"type": "product"
},
"app_name": {
"caption": "Application Name",
"description": "The name of the application associated with the event or object.",
"type": "string_t"
},
"app_uid": {
"caption": "Application ID",
"description": "The unique ID of the application associated with the event or object.",
"type": "string_t"
},
"architecture": {
"caption": "Architecture",
"description": "Architecture is a shorthand name describing the type of computer hardware the packaged software is meant to run on.",
"type": "string_t"
},
"args": {
"caption": "HTTP Arguments",
"description": "The arguments sent along with the HTTP request.",
"type": "string_t"
},
"assignee": {
"caption": "Assignee",
"description": "The details of the user assigned to an Incident.",
"type": "user"
},
"assignee_group": {
"caption": "Assignee Group",
"description": "The details of the group assigned to an Incident.",
"type": "group"
},
"attacks": {
"caption": "MITRE ATT&CK® Details",
"description": "An array of <a target='_blank' href='https://attack.mitre.org'>MITRE ATT&CK®</a> objects describing the tactics, techniques & sub-techniques identified by a security control or finding.",
"type": "attack",
"is_array": true
},
"attempt": {
"caption": "Attempt",
"description": "The delivery attempt.",
"type": "integer_t"
},
"attributes": {
"caption": "Attributes",
"description": "The bitmask value that represents the file attributes.",
"type": "integer_t"
},
"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
},
"auth_protocol": {
"caption": "Auth Protocol",
"description": "The authentication protocol as defined by the caption of 'auth_protocol_id'. In the case of 'Other', it is defined by the event source.",
"type": "string_t"
},
"auth_protocol_id": {
"caption": "Auth Protocol ID",
"description": "The normalized identifier of the authentication protocol used to create the user session.",
"sibling": "auth_protocol",
"type": "integer_t",
"enum": {
"0": {
"caption": "Unknown",
"description": "The authentication protocol is unknown."
},
"1": {
"caption": "NTLM"
},
"2": {
"caption": "Kerberos"
},
"3": {
"caption": "Digest"
},
"4": {
"caption": "OpenID"
},
"5": {
"caption": "SAML"
},
"6": {
"caption": "OAUTH 2.0"
},
"7": {
"caption": "PAP"
},
"8": {
"caption": "CHAP"
},
"9": {
"caption": "EAP"
},
"10": {
"caption": "RADIUS"
},
"99": {
"caption": "Other",
"description": "The authentication protocol is not mapped. See the <code>auth_protocol</code> attribute, which contains a data source specific value."
}
}
},
"auth_type": {
"caption": "Authentication Type",
"description": "The agreed upon authentication type, normalized to the caption of 'auth_type_id'. In the case of 'Other', it is defined by the event source.",
"type": "string_t"
},
"auth_type_id": {
"caption": "Authentication Type ID",
"description": "The normalized identifier of the agreed upon authentication type. See specific usage.",
"sibling": "auth_type",
"type": "integer_t",
"enum": {
"0": {
"caption": "Unknown",
"description": "The authentication type is unknown."
},
"99": {
"caption": "Other",
"description": "The authentication type is not mapped. See the <code>auth_type</code> attribute, which contains a data source specific value."
}
}
},
"authorizations": {
"caption": "Authorization Information",
"description": "Provides details about an authorization, such as authorization outcome, and any associated policies related to the activity/event.",
"type": "authorization",
"is_array": true
},
"autonomous_system": {
"caption": "Autonomous System",
"description": "The Autonomous System details associated with an IP address.",
"type": "autonomous_system"
},
"autoscale_uid": {
"caption": "Autoscale UID",
"description": "The unique identifier of the cloud autoscale configuration.",
"type": "string_t"
},
"avg_timespan": {
"caption": "Average Timespan",
"description": "The average time span of an activity.",
"type": "timespan"
},
"banner": {
"caption": "SMTP Banner",
"description": "The initial SMTP connection response that a messaging server receives after it connects to a email server.",
"type": "string_t"
},
"base_address": {
"caption": "Base Address",
"description": "The memory address where the module was loaded.",
"type": "string_t"
},
"base_score": {
"caption": "Base Score",
"description": "The base score as reported by the event source. See specific usage.",
"type": "float_t"
},
"bios_date": {
"caption": "BIOS Date",
"description": "The BIOS date. For example: <code>03/31/16</code>.",
"type": "string_t"
},
"bios_manufacturer": {
"caption": "BIOS Manufacturer",
"description": "The BIOS manufacturer. For example: <code>LENOVO</code>.",
"type": "string_t"
},
"bios_ver": {
"caption": "BIOS Version",
"description": "The BIOS version. For example: <code>LENOVO G5ETA2WW (2.62)</code>.",
"type": "string_t"
},
"body_length": {
"caption": "Body Length not including header",
"description": "The actual length of the HTTP response/request body, in number of bytes, independent of a potentially existing Content-Length header.",
"type": "integer_t"
},
"boot_time": {
"caption": "Boot Time",
"description": "The time when the system was booted.",
"type": "timestamp_t"
},
"boundary": {
"caption": "Boundary",
"description": "The boundary of the connection, normalized to the caption of 'boundary_id'. In the case of 'Other', it is defined by the event source. <p> For cloud connections, this translates to the traffic-boundary(same VPC, through IGW, etc.). For traditional networks, this is described as Local, Internal, or External.</p>",
"type": "string_t"
},
"boundary_id": {
"caption": "Boundary ID",
"description": "<p>The normalized identifier of the boundary of the connection. </p><p> For cloud connections, this translates to the traffic-boundary (same VPC, through IGW, etc.). For traditional networks, this is described as Local, Internal, or External.</p>",
"sibling": "boundary",
"type": "integer_t",
"enum": {
"0": {
"caption": "Unknown",
"description": "The connection boundary is unknown."
},
"1": {
"caption": "Localhost",
"description": "Local network traffic on the same endpoint."
},
"2": {
"caption": "Internal",
"description": "Internal network traffic between two endpoints inside network."
},
"3": {
"caption": "External",
"description": "External network traffic between two endpoints on the Internet or outside the network."
},
"4": {
"caption": "Same VPC",
"description": "Through another resource in the same VPC"
},
"5": {
"caption": "Internet/VPC Gateway",
"description": "Through an Internet gateway or a gateway VPC endpoint"
},
"6": {
"caption": "Virtual Private Gateway",
"description": "Through a virtual private gateway"
},
"7": {
"caption": "Intra-region VPC",
"description": "Through an intra-region VPC peering connection"
},
"8": {
"caption": "Inter-region VPC",
"description": "Through an inter-region VPC peering connection"
},
"9": {
"caption": "Local Gateway",
"description": "Through a local gateway"
},
"10": {
"caption": "Gateway VPC",
"description": "Through a gateway VPC endpoint (Nitro-based instances only)"
},
"11": {
"caption": "Internet Gateway",
"description": "Through an Internet gateway (Nitro-based instances only)"
},
"99": {
"caption": "Other",
"description": "The boundary is not mapped. See the <code>boundary</code> attribute, which contains a data source specific value."
}
}
},
"build": {
"caption": "OS Build",
"description": "The operating system build number.",
"type": "string_t"
},
"bulletin": {
"caption": "Patch Bulletin",
"description": "The vendor bulletin identifier.",
"type": "string_t"
},
"bytes": {
"caption": "Total Bytes",
"description": "The total number of bytes (in and out).",
"type": "long_t"
},
"bytes_in": {
"caption": "Bytes In",
"description": "The number of bytes sent from the destination to the source.",
"type": "long_t"
},
"bytes_out": {
"caption": "Bytes Out",
"description": "The number of bytes sent from the source to the destination.",
"type": "long_t"
},
"capabilities": {
"caption": "Capabilities",
"description": "A list of RDP capabilities.",
"type": "string_t",
"is_array": true
},
"caption": {
"caption": "Caption",
"description": "A short description or caption of the device. For example: <code>Scanner 1</code> or <code>Database Manager</code>.",
"type": "string_t"
},
"categories": {
"caption": "Website Categorization",
"description": "The Website categorization names, as defined by <code>category_ids</code> enum values.",
"type": "string_t",
"is_array": true
},
"category": {
"caption": "Category",
"description": "The object category, normalized to the caption of <code>category_id</code>. 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"
},
"category_ids": {
"caption": "Website Categorization IDs",
"description": "The Website categorization identifiers.",
"sibling": "categories",
"type": "integer_t",
"enum": {
"0": {
"caption": "Unknown",
"description": "The Domain/URL category is unknown."
},
"1": {
"caption": "Adult/Mature Content"
},
"3": {
"caption": "Pornography"
},
"4": {
"caption": "Sex Education"
},
"5": {
"caption": "Intimate Apparel/Swimsuit"
},
"6": {
"caption": "Nudity"
},
"7": {
"caption": "Extreme"
},
"9": {
"caption": "Scam/Questionable/Illegal"
},
"11": {
"caption": "Gambling"
},
"14": {
"caption": "Violence/Hate/Racism"
},
"15": {
"caption": "Weapons"
},
"16": {
"caption": "Abortion"
},
"17": {
"caption": "Hacking"
},
"18": {
"caption": "Phishing"
},
"20": {
"caption": "Entertainment"
},
"21": {
"caption": "Business/Economy"
},
"22": {
"caption": "Alternative Spirituality/Belief"
},
"23": {
"caption": "Alcohol"
},
"24": {
"caption": "Tobacco"
},
"25": {
"caption": "Controlled Substances"
},
"26": {
"caption": "Child Pornography"
},
"27": {
"caption": "Education"
},
"29": {
"caption": "Charitable Organizations"
},
"30": {
"caption": "Art/Culture"
},
"31": {
"caption": "Financial Services"
},
"32": {
"caption": "Brokerage/Trading"
},
"33": {
"caption": "Games"
},
"34": {
"caption": "Government/Legal"
},
"35": {
"caption": "Military"
},
"36": {
"caption": "Political/Social Advocacy"
},
"37": {
"caption": "Health"
},
"38": {
"caption": "Technology/Internet"
},
"40": {
"caption": "Search Engines/Portals"
},
"43": {
"caption": "Malicious Sources/Malnets"
},
"44": {
"caption": "Malicious Outbound Data/Botnets"
},
"45": {
"caption": "Job Search/Careers"
},
"46": {
"caption": "News/Media"
},
"47": {
"caption": "Personals/Dating"
},
"49": {
"caption": "Reference"
},
"50": {
"caption": "Mixed Content/Potentially Adult"
},
"51": {
"caption": "Chat (IM)/SMS"
},
"52": {
"caption": "Email"
},
"53": {
"caption": "Newsgroups/Forums"
},
"54": {
"caption": "Religion"
},
"55": {
"caption": "Social Networking"
},
"56": {
"caption": "File Storage/Sharing"
},
"57": {
"caption": "Remote Access Tools"
},
"58": {
"caption": "Shopping"
},
"59": {
"caption": "Auctions"
},
"60": {
"caption": "Real Estate"
},
"61": {
"caption": "Society/Daily Living"
},
"63": {
"caption": "Personal Sites"
},
"64": {
"caption": "Restaurants/Dining/Food"
},
"65": {
"caption": "Sports/Recreation"
},
"66": {
"caption": "Travel"
},
"67": {
"caption": "Vehicles"
},
"68": {
"caption": "Humor/Jokes"
},
"71": {
"caption": "Software Downloads"
},
"83": {
"caption": "Peer-to-Peer (P2P)"
},
"84": {
"caption": "Audio/Video Clips"
},
"85": {
"caption": "Office/Business Applications"
},
"86": {
"caption": "Proxy Avoidance"
},
"87": {
"caption": "For Kids"
},
"88": {
"caption": "Web Ads/Analytics"
},
"89": {
"caption": "Web Hosting"
},
"90": {
"caption": "Uncategorized"
},
"92": {
"caption": "Suspicious"
},
"93": {
"caption": "Sexual Expression"
},
"95": {
"caption": "Translation"
},
"96": {
"caption": "Non-Viewable/Infrastructure"
},
"97": {
"caption": "Content Servers"
},
"98": {
"caption": "Placeholders"
},
"99": {
"caption": "Other",
"description": "The Domain/URL category is not mapped. See the <code>categories</code> attribute, which contains a data source specific value."
},
"101": {
"caption": "Spam"
},
"102": {
"caption": "Potentially Unwanted Software"
},
"103": {
"caption": "Dynamic DNS Host"
},
"106": {
"caption": "E-Card/Invitations"
},
"107": {
"caption": "Informational"
},
"108": {
"caption": "Computer/Information Security"
},
"109": {
"caption": "Internet Connected Devices"
},
"110": {
"caption": "Internet Telephony"
},
"111": {
"caption": "Online Meetings"
},
"112": {
"caption": "Media Sharing"
},
"113": {
"caption": "Radio/Audio Streams"
},
"114": {
"caption": "TV/Video Streams"
},
"118": {
"caption": "Piracy/Copyright Concerns"
},
"121": {
"caption": "Marijuana"
}
},
"is_array": true
},
"category_name": {
"caption": "Category",
"description": "The event category name, as defined by category_uid value.",
"type": "string_t"
},
"category_uid": {
"caption": "Category ID",
"description": "The category unique identifier of the event.",
"sibling": "category_name",
"type": "integer_t"
},
"cc": {
"caption": "Cc",
"description": "The email header Cc values, as defined by RFC 5322.",
"type": "email_t",
"is_array": true
},
"certificate": {
"caption": "Certificate",
"description": "The certificate object containing information about the digital certificate.",
"type": "certificate"
},
"certificate_chain": {
"caption": "Certificate Chain",
"description": "The Chain of Certificate Serial Numbers field provides a chain of Certificate Issuer Serial Numbers leading to the Root Certificate Issuer.",
"type": "string_t",
"is_array": true
},
"chassis": {
"caption": "Chassis",
"description": "The chassis type describes the system enclosure or physical form factor. Such as the following examples for Windows <a target='_blank' href='https://docs.microsoft.com/en-us/windows/win32/cimwin32prov/win32-systemenclosure'>Windows Chassis Types</a>",
"type": "string_t"
},
"chunks": {
"caption": "Chunks",
"description": "A unit of information within an SCTP packet, consisting of a chunk header and chunk-specific content. See RFC 4960. This field can be used for the total number of chunks (in and out).",
"type": "long_t"
},
"chunks_in": {
"caption": "Chunks In",
"description": "A unit of information within an SCTP packet, consisting of a chunk header and chunk-specific content. See RFC 4960. This field can be used for the chunks sent from the destination to the source.",
"type": "long_t"
},
"chunks_out": {
"caption": "Chunks Out",
"description": "A unit of information within an SCTP packet, consisting of a chunk header and chunk-specific content. See RFC 4960. This field can be used for the chunks sent from the source to the destination.",
"type": "long_t"
},
"cipher": {
"caption": "Cipher Suite",
"description": "The negotiated cipher suite.",
"type": "string_t"
},
"cis_benchmark": {
"caption": "CIS Benchmark",
"description": "The CIS Benchmark describes best practices for securely configuring IT systems, software, networks, and cloud infrastructure as defined by the Center for Internet Security (<a target='_blank' href='https://www.cisecurity.org/cis-benchmarks/'>CIS</a>).",
"type": "cis_benchmark"
},
"cis_benchmark_result": {
"caption": "CIS Benchmark Result",
"description": "The CIS benchmark result.",
"type": "cis_benchmark_result"
},
"cis_controls": {
"caption": "CIS Controls",
"description": "The CIS Critical Security Controls is a prioritized set of actions to protect your organization and data from cyber-attack vectors.",
"type": "cis_control",
"is_array": true
},
"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.",
"type": "cis_csc",
"is_array": true
},
"city": {
"caption": "City",
"description": "The name of the city.",
"type": "string_t"
},
"class": {
"caption": "Class",
"description": "The class name of the object. See specific usage.",
"type": "string_t"
},
"class_name": {
"caption": "Class",
"description": "The event class name, as defined by class_uid value.",
"type": "string_t"
},
"class_uid": {
"caption": "Class ID",
"description": "The unique identifier of a class. A class describes the attributes available in an event.",
"sibling": "class_name",
"type": "integer_t"
},
"classification": {
"caption": "Classification",
"description": "The classification as defined by the vendor.",
"type": "string_t"
},
"classification_ids": {
"caption": "Classification IDs",
"description": "The list of normalized classification identifiers. See specific usage.",
"sibling": "classifications",
"type": "integer_t",
"enum": {
"0": {
"caption": "Unknown",
"description": "The classification is unknown."
},
"99": {
"caption": "Other",
"description": "The classification is not mapped. See the <code>classifications</code> attribute, which contains a data source specific value."
}
},
"is_array": true
},
"classifications": {
"caption": "Classifications",
"description": "The list of malware classifications, normalized to the captions of the classification_id values. In the case of 'Other', they are defined by the event source.",
"type": "string_t",
"is_array": true
},
"client_ciphers": {
"caption": "Client Cipher Suites",
"description": "The client cipher suites that were exchanged during the TLS handshake negotiation.",
"type": "string_t",
"is_array": true
},
"client_dialects": {
"caption": "Client Dialects",
"description": "The list of SMB dialects that the client speaks.",
"type": "string_t",
"is_array": true
},
"client_hassh": {
"caption": "Client HASSH",
"description": "The Client HASSH fingerprinting object.",
"type": "hassh"
},
"cloud": {
"caption": "Cloud",
"description": "Describes details about the Cloud environment where the event was originally created or logged.",
"type": "cloud"
},
"cloud_partition": {
"caption": "Cloud Partition",
"description": "The canonical cloud partition name to which the region is assigned (e.g. AWS Partitions: aws, aws-cn, aws-us-gov).",
"type": "string_t"
},
"cmd_line": {
"observable": 13,
"caption": "Command Line",
"description": "The full command line used to launch an application, service, process, or job. For example: <code>ssh [email protected]</code>. If the command line is unavailable or missing, the empty string <code>''</code> is to be used.",
"type": "string_t"
},
"code": {
"caption": "Response Code",
"description": "The numeric response sent to a request.",
"type": "integer_t"
},
"codes": {
"caption": "Response Codes",
"description": "The list of numeric responses sent to a request.",
"type": "integer_t",
"is_array": true
},
"color_depth": {
"caption": "Color Depth",
"description": "The numeric color depth.",
"type": "integer_t"
},
"command": {
"caption": "Command",
"description": "The command name.",
"type": "string_t"
},
"command_response": {
"caption": "Command Response",
"description": "The response to the command.",
"type": "string_t"
},
"command_responses": {
"caption": "Command Responses",
"description": "The responses to the command.",
"type": "string_t",
"is_array": true
},
"command_uid": {
"caption": "Command UID",
"description": "The unique command identifier.",
"type": "string_t"
},
"comment": {
"caption": "Comment",
"description": "The user-provided comment.",
"type": "string_t"
},
"community_uid": {
"caption": "Community ID",
"source": "community_id",
"references": [{"url": "https://github.com/corelight/community-id-spec", "description": "Community ID definition."}],
"description": "The Community ID of the network connection.",
"type": "string_t"
},
"company_name": {
"caption": "Company Name",
"description": "The name of the company that published the file. For example: <code>Microsoft Corporation</code>.",
"type": "string_t"
},
"compliance": {
"caption": "Compliance",
"description": "The compliance object provides context to compliance findings (e.g., a check against a specific regulatory or best practice framework such as CIS, NIST etc.) and contains compliance related details.",
"type": "compliance"
},
"compliance_references": {
"caption": "Compliance Standard References",
"description": "A list of reference KB articles that provide information to help organizations understand, interpret, and implement compliance standards. They provide guidance, best practices, and examples.",
"type": "kb_article",
"is_array": true
},
"compliance_standards": {
"caption": "Compliance Standards: Details",
"description": "A list of established guidelines or criteria that define specific requirements an organization must follow.",
"type": "kb_article",