-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathen.json
More file actions
1067 lines (1067 loc) · 44.3 KB
/
en.json
File metadata and controls
1067 lines (1067 loc) · 44.3 KB
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
{
"1 - Confirmed by other sources": "1 - Confirmed by other sources",
"2 - Probably True": "2 - Probably True",
"2FA state": "2FA state",
"3 - Possibly True": "3 - Possibly True",
"4 - Doubtful": "4 - Doubtful",
"5 - Improbable": "5 - Improbable",
"6 - Truth Cannot be judged": "6 - Truth Cannot be judged",
"Abstract": "Abstract",
"Access right": "Access right",
"Account creation date": "Account creation date",
"Account expiration date": "Account expiration date",
"Account first login date": "Account first login date",
"Account last login date": "Account last login date",
"Account login": "Account login",
"Account number": "Account number",
"Account status": "Account status",
"Account type": "Account type",
"Actions": "Actions",
"Activated": "Activated",
"Active": "Active",
"Activity listeners IDs": "Activity listeners IDs",
"Added after": "Added after",
"Added value": "Added value",
"Added_after_start": "Added_after_start",
"Additional names": "Additional names",
"Administrated organizations": "Administrated organizations",
"Administrator": "Administrator",
"AI insight activation": "AI insight activation",
"Algorithm": "Algorithm",
"Alias": "Alias",
"Aliases": "Aliases",
"Allowed markings": "Allowed markings",
"Analysis content source": "Analysis content source",
"Analysis content type": "Analysis content type",
"Analysis definition version": "Analysis definition version",
"Analysis end date": "Analysis end date",
"Analysis ended": "Analysis ended",
"Analysis engine version": "Analysis engine version",
"Analysis SCO": "Analysis SCO",
"Analysis start date": "Analysis start date",
"Analysis started": "Analysis started",
"Analysis type": "Analysis type",
"API Token": "API Token",
"API Tokens": "API Tokens",
"Applicant": "Applicant",
"Architecture execution env.": "Architecture execution env.",
"Artifact content": "Artifact content",
"ASLR enabled": "ASLR enabled",
"Assignees": "Assignees",
"Associated CWE(s)": "Associated CWE(s)",
"Atime": "Atime",
"Attachment": "Attachment",
"Attack vector": "Attack vector",
"Attribute": "Attribute",
"Attribute name": "Attribute name",
"Attributes": "Attributes",
"Attributes configuration": "Attributes configuration",
"Attribution propagation": "Attribution propagation",
"Authentication name": "Authentication name",
"Authentication type": "Authentication type",
"Authentication value": "Authentication value",
"Author": "Author",
"Author of related entity": "Author of related entity",
"Authority key identifier": "Authority key identifier",
"Authorize to new markings": "Authorize to new markings",
"Authorized authorities": "Authorized authorities",
"Authorized members": "Authorized members",
"Authorized members activation date": "Authorized members activation date",
"Authors": "Authors",
"Auto": "Auto",
"Auto collapse submenus": "Auto collapse submenus",
"Auto create group": "Auto create group",
"Auto enrichment disable": "Auto enrichment disable",
"Autonomous system number": "Autonomous system number",
"Availability impact": "Availability impact",
"Available for types": "Available for types",
"Available settings": "Available settings",
"Available since": "Available since",
"Banner level": "Banner level",
"Banner text": "Banner text",
"Base score": "Base score",
"Base severity": "Base severity",
"Base type": "Base type",
"Basic constraints": "Basic constraints",
"Basic information": "Basic information",
"BCC": "BCC",
"Belonging propagation": "Belonging propagation",
"Belongs to": "Belongs to",
"BIC": "BIC",
"Biographics": "Biographics",
"Body": "Body",
"body": "body",
"Body multiplart": "Body multiplart",
"Body raw reference": "Body raw reference",
"Bookmarks": "Bookmarks",
"Born In": "Born In",
"Built-in": "Built-in",
"Button display name": "Button display name",
"Can escalate privs": "Can escalate privs",
"Capabilities": "Capabilities",
"Capability order": "Capability order",
"Card number": "Card number",
"Carousel order": "Carousel order",
"Case template": "Case template",
"Category": "Category",
"CC": "CC",
"Certifiate policies": "Certifiate policies",
"Channel types": "Channel types",
"Child": "Child",
"CISA KEV": "CISA KEV",
"Client certificate authentication": "Client certificate authentication",
"ClientCertStrategy": "Client Cert Strategy",
"Collection": "Collection",
"Color": "Color",
"Command line": "Command line",
"Comment": "Comment",
"Comments": "Comments",
"Commit": "Commit",
"Compatible with playbooks": "Compatible with playbooks",
"Completed": "Completed",
"Completed number": "Completed number",
"Completion date": "Completion date",
"Confidence": "Confidence",
"Confidence level": "Confidence level",
"Confidentiality impact": "Confidentiality impact",
"Configuration": "Configuration",
"Configuration version": "Configuration version",
"Connector catalog": "Connector catalog",
"Connector ID": "Connector ID",
"Connector information": "Connector information",
"Connector manager": "Connector manager",
"Connector manager current status": "Connector manager current status",
"Connector manager image": "Connector manager image",
"Connector manager requested status": "Connector manager requested status",
"Connector name": "Connector name",
"Connector scope": "Connector scope",
"Connector state": "Connector state",
"Connector trigger filters": "Connector trigger filters",
"Connector type": "Connector type",
"Connector user id": "Connector user id",
"Connectors": "Connectors",
"Consent confirm text": "Consent confirm text",
"Consent message": "Consent message",
"Contact information": "Contact information",
"Contains": "Contains",
"Contains observable": "Contains observable",
"content": "Content",
"Content": "Content",
"Content disposition": "Content disposition",
"Content length": "Content length",
"Content mapping": "Content mapping",
"Content markings": "Content markings",
"Content type": "Content type",
"Context": "Context",
"Context data": "Context data",
"Contextual only": "Contextual only",
"Copy confidence level to OpenCTI scores for indicators": "Copy confidence level to OpenCTI scores for indicators",
"Copy OpenCTI scores to confidence level for indicators": "Copy OpenCTI scores to confidence level for indicators",
"Count": "Count",
"Coverage": "Coverage",
"Coverage name": "Coverage name",
"Coverage score": "Coverage score",
"Coverage target": "Coverage target",
"CPE": "CPE",
"Created": "Created",
"Created at": "Created at",
"Created by": "Created by",
"Created date": "Created date",
"Creation date": "Creation date",
"Creator of related entity": "Creator of related entity",
"Creator tool": "Creator tool",
"Creators": "Creators",
"Credential": "Credential",
"Credential last modification date": "Credential last modification date",
"Credentials": "Credentials",
"CRL distribution points": "CRL distribution points",
"Csv_mapper": "Csv_mapper",
"Csv_mapper_id": "Csv_mapper_id",
"Csv_mapper_type": "Csv_mapper_type",
"Ctime": "Ctime",
"Current draft context": "Current draft context",
"Current state cursor": "Current state cursor",
"Current state date": "Current state date",
"Current stated date": "Current stated date",
"Current_state_hash": "Current_state_hash",
"CVSS2 Access Complexity (AC)": "CVSS2 Access Complexity (AC)",
"CVSS2 Access Vector (AV)": "CVSS2 Access Vector (AV)",
"CVSS2 Authentication (Au)": "CVSS2 Authentication (Au)",
"CVSS2 Availability Impact (A)": "CVSS2 Availability Impact (A)",
"CVSS2 Confidentiality Impact (C)": "CVSS2 Confidentiality Impact (C)",
"CVSS2 Exploitability (E)": "CVSS2 Exploitability (E)",
"CVSS2 Integrity Impact (I)": "CVSS2 Integrity Impact (I)",
"CVSS2 Remediation Level (RL)": "CVSS2 Remediation Level (RL)",
"CVSS2 Report Confidence (RC)": "CVSS2 Report Confidence (RC)",
"CVSS2 Score": "CVSS2 Score",
"CVSS2 Temporal Score": "CVSS2 Temporal Score",
"CVSS2 Vector": "CVSS2 Vector",
"CVSS3 Attack Complexity (AC)": "CVSS3 Attack Complexity (AC)",
"CVSS3 Attack vector": "CVSS3 Attack vector",
"CVSS3 Attack Vector (AV)": "CVSS3 Attack Vector (AV)",
"CVSS3 Availability impact": "CVSS3 Availability impact",
"CVSS3 Availability Impact (A)": "CVSS3 Availability Impact (A)",
"CVSS3 Confidentiality impact": "CVSS3 Confidentiality impact",
"CVSS3 Confidentiality Impact (C)": "CVSS3 Confidentiality Impact (C)",
"CVSS3 Exploit Code Maturity (E)": "CVSS3 Exploit Code Maturity (E)",
"CVSS3 Integrity impact": "CVSS3 Integrity impact",
"CVSS3 Integrity Impact (I)": "CVSS3 Integrity Impact (I)",
"CVSS3 Privileges Required (PR)": "CVSS3 Privileges Required (PR)",
"CVSS3 Remediation Level (RL)": "CVSS3 Remediation Level (RL)",
"CVSS3 Report Confidence (RC)": "CVSS3 Report Confidence (RC)",
"CVSS3 Scope (S)": "CVSS3 Scope (S)",
"CVSS3 Score": "CVSS3 Score",
"CVSS3 Severity": "CVSS3 Severity",
"CVSS3 Temporal Score": "CVSS3 Temporal Score",
"CVSS3 User interaction (UI)": "CVSS3 User interaction (UI)",
"CVSS3 Vector": "CVSS3 Vector",
"CVSS4 Attack Complexity (AC)": "CVSS4 Attack Complexity (AC)",
"CVSS4 Attack Requirements (AT)": "CVSS4 Attack Requirements (AT)",
"CVSS4 Attack Vector (AV)": "CVSS4 Attack Vector (AV)",
"CVSS4 Exploit Maturity (E)": "CVSS4 Exploit Maturity (E)",
"CVSS4 Privileges Required (PR)": "CVSS4 Privileges Required (PR)",
"CVSS4 Score": "CVSS4 Score",
"CVSS4 Severity": "CVSS4 Severity",
"CVSS4 SS Avalability Impact (SA)": "CVSS4 SS Avalability Impact (SA)",
"CVSS4 SS Confidentiality Impact (SC)": "CVSS4 SS Confidentiality Impact (SC)",
"CVSS4 SS Integrity Impact (SI)": "CVSS4 SS Integrity Impact (SI)",
"CVSS4 User Interaction (UI)": "CVSS4 User Interaction (UI)",
"CVSS4 Vector": "CVSS4 Vector",
"CVSS4 VS Availability Impact (VA)": "CVSS4 VS Availability Impact (VA)",
"CVSS4 VS Confidentiality Impact (VC)": "CVSS4 VS Confidentiality Impact (VC)",
"CVSS4 VS Integrity Impact (VI)": "CVSS4 VS Integrity Impact (VI)",
"CVV": "CVV",
"CWD": "CWD",
"Dark accent": "Dark accent",
"Dark background": "Dark background",
"Dark logo": "Dark logo",
"Dark logo collapsed": "Dark logo collapsed",
"Dark logo login": "Dark logo login",
"Dark navigation": "Dark navigation",
"Dark paper": "Dark paper",
"Dark primary": "Dark primary",
"Dark secondary": "Dark secondary",
"Dashboard": "Dashboard",
"Dashboard id": "Dashboard id",
"Data": "Data",
"Data source": "Data source",
"Data type": "Data type",
"Date": "Date",
"Date of birth": "Date of birth",
"Decay applied rule": "Decay applied rule",
"Decay base score": "Decay base score",
"Decay base score date": "Decay base score date",
"Decay exclusion applied rule": "Decay exclusion applied rule",
"Decay factor": "Decay factor",
"Decay history": "Decay history",
"Decay next reaction date": "Decay next reaction date",
"Decryption key": "Decryption key",
"Default assignation": "Default assignation",
"Default dashboard": "Default dashboard",
"Default Group used for integration user creation": "Default Group used for integration user creation",
"Default hidden types": "Default hidden types",
"Default marking": "Default marking",
"Default time field": "Default time field",
"Definition": "Definition",
"Deleted by": "Deleted by",
"Deleted elements": "Deleted elements",
"Deleted entity id": "Deleted entity id",
"Deleted entity name": "Deleted entity name",
"Deleted entity type": "Deleted entity type",
"Deletion date": "Deletion date",
"Demographics": "Demographics",
"DEP enabled": "DEP enabled",
"Description": "Description",
"Descriptions": "Descriptions",
"Detail changes": "Detail changes",
"Detection": "Detection",
"Digest period": "Digest period",
"Disabled": "Disabled",
"Dismissible": "Dismissible",
"Display name": "Display name",
"DLL service": "DLL service",
"Do you want to delete this support package?": "Do you want to delete this support package?",
"Draft change": "Draft change",
"Draft ids": "Draft ids",
"Draft name": "Draft name",
"Draft operation": "Draft operation",
"Draft status": "Draft status",
"Draft update patch": "Draft update patch",
"DST": "DST",
"DST byte count": "DST byte count",
"DST packets": "DST packets",
"DST Payload": "DST Payload",
"DST port": "DST port",
"Due date": "Due date",
"Due date (UTC)": "Due date (UTC)",
"Duplicate a CSV mapper": "Duplicate a CSV mapper",
"Duplicate a feed": "Duplicate a feed",
"Duration": "Duration",
"dynamic": "Dynamic",
"Dynamic from": "Dynamic from",
"Dynamic source": "Dynamic source",
"Dynamic target": "Dynamic target",
"Dynamic to": "Dynamic to",
"Element ID": "Element ID",
"Email": "Email",
"Email date": "Email date",
"Email from": "Email from",
"Email Object": "Email Object",
"Email to": "Email to",
"Emails": "Emails",
"Enabled": "Enabled",
"Encapsulates": "Encapsulates",
"Encaspulated by": "Encaspulated by",
"Encoding": "Encoding",
"Encryption algorithm": "Encryption algorithm",
"End date": "End date",
"Endd date": "Endd date",
"Enforce reference": "Enforce reference",
"Enrichment resolution": "Enrichment resolution",
"Enterprise edition date": "Enterprise edition date",
"Enterprise edition license": "Enterprise edition license",
"Entity": "Entity",
"Entity details": "Entity details",
"Entity dynamic mapping": "Entity dynamic mapping",
"Entity ID": "Entity ID",
"Entity metrics": "Entity metrics",
"Entity name": "Entity name",
"Entity Type": "Entity Type",
"Entity type": "Entity type",
"Environment variables": "Environment variables",
"EPSS Percentile": "EPSS - Percentile",
"EPSS Score": "EPSS - Score",
"Equal": "Equal",
"Error": "Error",
"Errors": "Errors",
"Ethnicity": "Ethnicity",
"Event access": "Event access",
"Event end date": "Event end date",
"Event scope": "Event scope",
"Event source": "Event source",
"Event start date": "Event start date",
"Event status": "Event status",
"Event type": "Event type",
"Event types": "Event types",
"Event user metadata": "Event user metadata",
"Excluded IDs": "Excluded IDs",
"Exclusion list cache build manager": "Exclusion list cache build manager",
"Exclusion list cache sync manager": "Exclusion list cache sync manager",
"Exclusion list entity types": "Exclusion list entity types",
"Exclusion list file size": "Exclusion list file size",
"Exclusion list values count": "Exclusion list values count",
"EXCLUSION_LIST_CACHE_BUILD_MANAGER": "Exclusion list cache build manager",
"EXCLUSION_LIST_CACHE_SYNC_MANAGER": "Exclusion list cache sync manager",
"Expected import number": "Expected import number",
"Expected number": "Expected number",
"Expiration date": "Expiration date",
"Expires at": "Expires at",
"Explanation": "Explanation",
"Export scope": "Export scope",
"Export type": "Export type",
"Extended key usage": "Extended key usage",
"Extensions": "Extensions",
"External": "External",
"External ID": "External ID",
"External id": "External id",
"External reference": "External reference",
"External references": "External references",
"External URI": "External URI",
"Eye color": "Eye color",
"False positive": "False positive",
"Feed attributes": "Feed attributes",
"Feed types": "Feed types",
"Field": "Field",
"File errors": "File errors",
"File ID": "File ID",
"File id": "File id",
"File identifier": "File identifier",
"File markings": "File markings",
"File messages": "File messages",
"File metadata": "File metadata",
"File mime": "File mime",
"File name": "File name",
"File size": "File size",
"Filename": "Filename",
"Files": "Files",
"Filters": "Filters",
"Fingerprint MD5": "Fingerprint MD5",
"Fingerprint sha256": "Fingerprint sha256",
"Fintel template widgets": "Fintel template widgets",
"First observation": "First observation",
"First observed": "First observed",
"First seen": "First seen",
"First seen active": "First seen active",
"Firstname": "Firstname",
"Form Schema": "Form Schema",
"Format": "Format",
"Freshness date": "Freshness date",
"From": "From",
"from": "from",
"Garbage collection manager": "Trash manager",
"Gender": "Gender",
"Goals": "Goals",
"Google analytics V4": "Google analytics V4",
"Gradiant From Color": "Gradiant From Color",
"Gradiant To Color": "Gradiant To Color",
"Grant": "Grant",
"Grantable groups": "Grantable groups",
"Granted by": "Granted by",
"Granted refs": "Granted refs",
"Graph data": "Graph data",
"Group": "Group",
"Group Confidence Level": "Group Confidence Level",
"Group name": "Group name",
"Grouping types": "Grouping types",
"Groups": "Groups",
"Groups management": "Groups management",
"Groups restriction IDs": "Groups restriction IDs",
"Hair color": "Hair color",
"Hash": "Hash",
"Hashes": "Hashes",
"Header": "Header",
"Header authentication configuration": "Header authentication configuration",
"Headers": "Headers",
"HeaderStrategy": "Header Strategy",
"Height": "Height",
"Height measure": "Height measure",
"Height measure date": "Height measure date",
"Hidden": "Hidden",
"Holder name": "Holder name",
"HUB_REGISTRATION_MANAGER": "Hub registration manager",
"IBAN": "IBAN",
"ID": "ID",
"Id": "Id",
"Identities propagation in reports": "Identities propagation in reports",
"Identity class": "Identity class",
"IDP Identifier": "IDP Identifier",
"Image": "Image",
"Implementation languages": "Implementation languages",
"In PIR": "In PIR",
"In regards of": "In regards of",
"In regards of (dynamic)": "In regards of (dynamic)",
"Incident response type": "Incident response type",
"Incident type": "Incident type",
"Include header": "Include header",
"Include in carousel": "Include in carousel",
"Include inferences": "Include inferences",
"Included IDs": "Included IDs",
"Index date": "Index date",
"Indicator decay manager": "Indicator decay manager",
"Indicator filters": "Indicator filters",
"Indicator observable types": "Indicator observable types",
"Indicator pattern": "Indicator pattern",
"Indicator types": "Indicator types",
"Indicators propagation in reports": "Indicators propagation in reports",
"Infer an incident when a sighting is created for a valid indicator.": "Infer an incident when a sighting is created for a valid indicator.",
"Infer sightings based on observed data and indicators.": "Infer sightings based on observed data and indicators.",
"Infer the targeting of an entity through a sighting of a specific indicator.": "Infer the targeting of an entity through a sighting of a specific indicator.",
"Inference of targeting via a sighting": "Inference of targeting via a sighting",
"Inference weight": "Inference weight",
"Information": "Information",
"Information types": "Information types",
"Infrastructure types": "Infrastructure types",
"Ingestion running": "Ingestion running",
"Ingestion state": "Ingestion state",
"Ingestion_running": "Ingestion_running",
"Inhibit any policy": "Inhibit any policy",
"Initiator": "Initiator",
"Input": "Input",
"Installed software": "Installed software",
"Instance filters": "Instance filters",
"Instance trigger": "Instance trigger",
"Integrity impact": "Integrity impact",
"Integrity level": "Integrity level",
"Internal aliases": "Internal aliases",
"Internal file": "Internal file",
"Internal id": "Internal id",
"Investigated entities": "Investigated entities",
"Is built-in": "Is built-in",
"Is detected": "Is detected",
"Is enabled": "Is enabled",
"Is family": "Is family",
"Is inferred": "Is inferred",
"Is live": "Is live",
"Is read": "Is read",
"Is sensitive changes allowed": "Is sensitive changes allowed",
"Issuer": "Issuer",
"Issuer alternative name": "Issuer alternative name",
"Job title": "Job title",
"Json_mapper_id": "Json_mapper_id",
"Key": "Key",
"Key length": "Key length",
"Key modification date": "Key modification date",
"Key type": "Key type",
"Key usage": "Key usage",
"Keywords": "Keywords",
"Kill chain name": "Kill chain name",
"Kill chain order": "Kill chain order",
"Kill chain phase": "Kill chain phase",
"Label": "Label",
"Label IDs": "Label IDs",
"Label of related entity": "Label of related entity",
"Labels": "Labels",
"Lang": "Lang",
"Language": "Language",
"Languages": "Languages",
"Last coverage": "Last coverage",
"Last deleted count": "Last deleted count",
"Last event id": "Last event id",
"Last execution": "Last execution",
"Last execution date": "Last execution date",
"Last ingestion run": "Last ingestion run",
"Last modification date": "Last modification date",
"Last modification since": "Last modification since",
"Last modifier": "Last modifier",
"Last observation": "Last observation",
"Last observed": "Last observed",
"Last PIR score date": "Last PIR score date",
"Last run": "Last run",
"Last run end date": "Last run end date",
"Last run start date": "Last run start date",
"Last score evolution": "Last score evolution",
"Last seen": "Last seen",
"Last update": "Last update",
"Lastname": "Lastname",
"Latest containers": "Latest containers",
"Latest created relationships": "Latest created relationships",
"Latitude": "Latitude",
"Layers": "Layers",
"LdapStrategy": "LDAP Strategy",
"Lifetime": "Lifetime",
"Light accent": "Light accent",
"Light background": "Light background",
"Light logo": "Light logo",
"Light logo collapsed": "Light logo collapsed",
"Light logo login": "Light logo login",
"Light navigation": "Light navigation",
"Light paper": "Light paper",
"Light primary": "Light primary",
"Light secondary": "Light secondary",
"Likelihood": "Likelihood",
"Linked objects": "Linked objects",
"Linked to": "Linked to",
"List of authentication strategy migrated": "List of authentication strategy migrated",
"List of parameters": "List of parameters",
"Listen deletion": "Listen deletion",
"Listen through http callback": "Listen through http callback",
"Local authentication": "Local authentication",
"LocalStrategy": "Local Strategy",
"Location propagation": "Location propagation",
"Location type": "Location type",
"Locations propagation in reports": "Locations propagation in reports",
"Log sources": "Log sources",
"Login message": "Login message",
"Logout remote": "Logout remote",
"Longitude": "Longitude",
"LZJD": "LZJD",
"Magic number hex": "Magic number hex",
"Main entity type": "Main entity type",
"Main observable type": "Main observable type",
"Maliciousness": "Maliciousness",
"Malware analysis operating System": "Malware analysis operating System",
"Malware analysis sample": "Malware analysis sample",
"Malware types": "Malware types",
"Manage access restrictions": "Manage access restrictions",
"Manage advanced access restrictions on entities": "Manage advanced access restrictions on entities",
"Manager contracts": "Manager contracts",
"Manager ID": "Manager ID",
"Manager running": "Manager running",
"Manifest": "Manifest",
"Mappings": "Mappings",
"Marital status": "Marital status",
"Marking": "Marking",
"Marking color": "Marking color",
"Marking definition": "Marking definition",
"Marking definition labels": "Marking definition labels",
"Marking definitions": "Marking definitions",
"Marking of related entity": "Marking of related entity",
"Marking order": "Marking order",
"Marking Type": "Marking Type",
"Marking type": "Marking type",
"Markings": "Markings",
"Masked Token": "Masked Token",
"Match Pir with source of relationship": "Match Pir with source of relationship",
"Max concurrent sessions (0 equals no maximum)": "Max concurrent sessions (0 equals no maximum)",
"Max Confidence": "Max Confidence",
"Max policy length": "Max policy length",
"Max shareable markings": "Max shareable markings",
"Maximum marking": "Maximum marking",
"Maximum retention": "Maximum retention",
"Maximum retention unit": "Maximum retention unit",
"MD5": "MD5",
"Measure": "Measure",
"Measure date": "Measure date",
"Media category": "Media category",
"Media publication date": "Media publication date",
"media_category": "Media Category",
"Message": "Message",
"Message ID": "Message ID",
"Messages": "Messages",
"Metadata date": "Metadata date",
"Metric name": "Metric name",
"Metric value": "Metric value",
"Mime type": "Mime type",
"Min policy length": "Min policy length",
"Min policy lowercase": "Min policy lowercase",
"Min policy number": "Min policy number",
"Min policy symbols": "Min policy symbols",
"Min policy uppercase": "Min policy uppercase",
"Min policy words": "Min policy words",
"Modification date": "Modification date",
"Modified": "Modified",
"Modified date": "Modified date",
"Modifier": "Modifier",
"Modules": "Modules",
"Monochrome labels and entity types": "Monochrome labels and entity types",
"Most recent history": "Most recent history",
"Mtime": "Mtime",
"Multipart": "Multipart",
"Name": "Name",
"Name constraints": "Name constraints",
"Name encoding": "Name encoding",
"Narrative types": "Narrative types",
"Network traffic active": "Network traffic active",
"Network traffic end date": "Network traffic end date",
"Network traffic start date": "Network traffic start date",
"New value": "New value",
"No creators accumulation": "No creators accumulation",
"No dependencies": "No dependencies",
"Not equal": "Not equal",
"Note types": "Note types",
"Notes about this entity": "Notes about this entity",
"Notification content": "Notification content",
"Notification event message": "Notification event message",
"Notification events": "Notification events",
"Notification message": "Notification message",
"Notification operation": "Notification operation",
"Notification related instance": "Notification related instance",
"Notification title": "Notification title",
"Notification type": "Notification type",
"Notifier connector ID": "Notifier connector ID",
"Notifiers": "Notifiers",
"Number": "Number",
"Number observed": "Number observed",
"Number of nodes in cluster": "Number of nodes in cluster",
"Number of sub-keys": "Number of sub-keys",
"Object markings": "Object markings",
"Objective": "Objective",
"Observable content": "Observable content",
"Observable description": "Observable description",
"Observable type": "Observable type",
"Observables": "Observables",
"Observables propagation in reports": "Observables propagation in reports",
"OpenCTI version": "OpenCTI version",
"Opened connection": "Opened connection",
"OpenIDConnectStrategy": "OpenID Connect Strategy",
"Operating System": "Operating System",
"Operation": "Operation",
"Operator": "Operator",
"Opinion": "Opinion",
"Opinion metrics": "Opinion metrics",
"Opinions max": "Opinions max",
"Opinions mean": "Opinions mean",
"Opinions min": "Opinions min",
"Opinions total number": "Opinions total number",
"Order": "Order",
"Order in carousel": "Order in carousel",
"Order mode for queries": "Order mode for queries",
"Organization": "Organization",
"Organization propagation via participation": "Organization propagation via participation",
"Organization type": "Organization type",
"Organizations": "Organizations",
"Organizations management": "Organizations management",
"Origin of the case": "Origin of the case",
"Original creation date": "Original creation date",
"Other entities": "Other entities",
"OTP mandatory": "OTP mandatory",
"OTP QR": "OTP QR",
"OTP secret": "OTP secret",
"Out of Range": "Out of Range",
"Outcomes": "Outcomes",
"Overrides": "Overrides",
"Overview layout customization": "Overview layout customization",
"Owner sid": "Owner sid",
"Package status": "Package status",
"Package upload directory": "Package upload directory",
"Package upload status on each node": "Package upload status on each node",
"Package url": "Package url",
"Parent": "Parent",
"Parent directory": "Parent directory",
"Parent types": "Parent types",
"Parent-child propagation": "Parent-child propagation",
"Participants": "Participants",
"Password": "Password",
"Path": "Path",
"Path encoding": "Path encoding",
"Pattern": "Pattern",
"Pattern type": "Pattern type",
"Pattern version": "Pattern version",
"Payload": "Payload",
"Period": "Period",
"Periodicity": "Periodicity",
"Permissions required": "Permissions required",
"Persona name": "Persona name",
"Persona Type": "Persona Type",
"Persona type": "Persona type",
"Personal motivation": "Personal motivation",
"Personal motivations": "Personal motivations",
"Phase name": "Phase name",
"PID": "PID",
"PIR Criteria": "PIR Criteria",
"PIR Explanations": "PIR Explanations",
"PIR explanations criterion": "PIR explanations criterion",
"PIR explanations dependencies": "PIR explanations dependencies",
"PIR explanations dependencies author ID": "PIR explanations dependencies author ID",
"PIR explanations dependencies element ID": "PIR explanations dependencies element ID",
"PIR Filters": "PIR Filters",
"PIR ID": "PIR ID",
"PIR IDS": "PIR IDS",
"PIR information": "PIR information",
"PIR Rescan in days": "PIR Rescan in days",
"PIR Score": "PIR Score",
"PIR scores": "PIR scores",
"PIR Type": "PIR Type",
"Platform creation date": "Platform creation date",
"Platform data sharing max markings": "Platform data sharing max markings",
"Platform email": "Platform email",
"Platform entity files ref": "Platform entity files ref",
"Platform favicon": "Platform favicon",
"Platform hidden type": "Platform hidden type",
"Platform language": "Platform language",
"Platform messages": "Platform messages",
"Platform organization": "Platform organization",
"Platform theme": "Platform theme",
"Platform title": "Platform title",
"Platform version": "Platform version",
"Platform(s) affinity": "Platform(s) affinity",
"Platforms": "Platforms",
"Playbook definition": "Playbook definition",
"Playbook running": "Playbook running",
"Policy constraints": "Policy constraints",
"Policy mappings": "Policy mappings",
"Position": "Position",
"Postal code": "Postal code",
"Precision": "Precision",
"Prevent default groups": "Prevent default groups",
"Previous value": "Previous value",
"Primary motivation": "Primary motivation",
"Print date": "Print date",
"Priority": "Priority",
"Priority group": "Priority group",
"Private key usage not after": "Private key usage not after",
"Private key usage not before": "Private key usage not before",
"Privileged": "Privileged",
"Process creation date": "Process creation date",
"Processed date": "Processed date",
"Processed number": "Processed number",
"Product": "Product",
"Product Name": "Product Name",
"Product name": "Product name",
"Product version": "Product version",
"Propagate a targeting from a child to its parent via attribution.": "Propagate a targeting from a child to its parent via attribution.",
"Propagate a targeting from a child to its parent via belonging.": "Propagate a targeting from a child to its parent via belonging.",
"Propagate a targeting from a child to its parent via location.": "Propagate a targeting from a child to its parent via location.",
"Propagate a usage from a child to its parent via attribution.": "Propagate a usage from a child to its parent via attribution.",
"Propagate a usage from a subtechnique to its parent.": "Propagate a usage from a subtechnique to its parent.",
"Propagate an organization from a child to its parent via participation.": "Propagate an organization from a child to its parent via participation.",
"Propagate attributions across parents or children.": "Propagate attributions across parents or children.",
"Propagate belonging across parents or children.": "Propagate belonging across parents or children.",
"Propagate indicators of an observable in a report.": "Propagate indicators of an observable in a report.",
"Propagate locations across parents or children.": "Propagate locations across parents or children.",
"Propagate observables of an indicator in a report.": "Propagate observables of an indicator in a report.",
"Propagate related objects over the whole graph. Testing only.": "Propagate related objects over the whole graph. Testing only.",
"Propagate relation between 2 objects via a common observable.": "Propagate relation between 2 objects via a common observable.",
"Propagate sightings of indicators to observables.": "Propagate sightings of indicators to observables.",
"Propagate sightings of observables to indicators.": "Propagate sightings of observables to indicators.",
"Propagate targeting when the target relationship is located somewhere.": "Propagate targeting when the target relationship is located somewhere.",
"Propagate the parents of a location in a report.": "Propagate the parents of a location in a report.",
"Propagate the parents of an identity in a report.": "Propagate the parents of an identity in a report.",
"Protocols": "Protocols",
"Provider": "Provider",
"Provider Configuration": "Provider Configuration",
"Provider identifier": "Provider identifier",
"Public": "Public",
"Public feed": "Public feed",
"Public key": "Public key",
"Public manifest": "Public manifest",
"Public stream": "Public stream",
"Public taxii": "Public taxii",
"Publication date": "Publication date",
"publication_date": "Publication Date",
"PublicKey": "PublicKey",
"Query attributes": "Query attributes",
"Raise incident based on sighting": "Raise incident based on sighting",
"Rating": "Rating",
"Raw": "Raw",
"Raw email": "Raw email",
"Reaction points": "Reaction points",
"Received lines": "Received lines",
"Reception date": "Reception date",
"Recipients": "Recipients",
"Related creator": "Related creator",
"Related entities": "Related entities",
"Related entity": "Related entity",
"Related external reference": "Related external reference",
"Related type": "Related type",
"Relation propagation testing rule": "Relation propagation testing rule",
"Relation propagation via an observable": "Relation propagation via an observable",
"Relations connections": "Relations connections",
"Relationship type": "Relationship type",
"Reliability": "Reliability",
"Reliability (of author)": "Reliability (of author)",
"Reliability (self or author)": "Reliability (self or author)",
"Reliability (self)": "Reliability (self)",
"Reliability of author": "Reliability of author",
"Remaining count": "Remaining count",
"Remove access restrictions": "Remove access restrictions",
"Remove advanced access restrictions on entities": "Remove advanced access restrictions on entities",
"Removed": "Removed",
"Removed value": "Removed value",
"Report propagation": "Report propagation",
"Report publication date": "Report publication date",
"Report types": "Report types",
"Representation": "Representation",
"Representations": "Representations",
"Representative": "Representative",
"Request access data as json field": "Request access data as json field",
"Request access workflow": "Request access workflow",
"Resolves to": "Resolves to",
"Resource level": "Resource level",
"Restrict delete to its own entities": "Restrict delete to its own entities",
"Result": "Result",
"Result name": "Result name",
"Retention manager": "Retention manager",
"Revoke score": "Revoke score",
"Revoked": "Revoked",
"RIR": "RIR",
"Role": "Role",
"Roles": "Roles",
"Rolling time": "Rolling time",
"Rule": "Rule",
"Running": "Running",
"SamlStrategy": "SAML Strategy",
"Sample": "Sample",
"Samples": "Samples",
"Scheduling period": "Scheduling period",
"Scope": "Scope",
"Score": "Score",
"SDHASH": "SDHASH",
"Search": "Search",
"Secondary motivation": "Secondary motivation",
"Security platform type": "Security platform type",
"Selected attribute date": "Selected attribute date",
"Selected IDs": "Selected IDs",
"Self signed": "Self signed",
"Send email from template": "Send email from template",
"Send email from template to targets": "Send email from template to targets",
"Sender": "Sender",
"Sender email": "Sender email",
"Separator": "Separator",
"Serial number": "Serial number",
"Service account": "Service account",
"Service name": "Service name",
"Service status": "Service status",
"Service type": "Service type",
"Setting": "Setting",
"Severity": "Severity",
"SHA-1": "SHA-1",
"SHA-256": "SHA-256",
"SHA-512": "SHA-512",
"SHA3-256": "SHA3-256",
"SHA3-512": "SHA3-512",
"Shared with": "Shared with",
"Show submenu icons": "Show submenu icons",
"Sightings of observables via observed data": "Sightings of observables via observed data",
"Sightings propagation from indicator": "Sightings propagation from indicator",
"Sightings propagation from observable": "Sightings propagation from observable",
"Signature algorithm": "Signature algorithm",
"Size": "Size",
"Skip line character": "Skip line character",
"Sophistication": "Sophistication",
"Source": "Source",
"Source connector": "Source connector",
"Source entity": "Source entity",
"Source name": "Source name",
"Source type": "Source type",
"SRC": "SRC",
"SRC byte count": "SRC byte count",
"SRC packets": "SRC packets",
"SRC Payload": "SRC Payload",
"SRC port": "SRC port",
"SSDEEP": "SSDEEP",
"SSL verify": "SSL verify",
"SSO Advanced configuration": "SSO Advanced configuration",
"SSO Configuration": "SSO Configuration",
"Standard id": "Standard id",
"Start": "Start",
"Start date": "Start date",
"Start time": "Start time",
"Start type": "Start type",
"Startup information": "Startup information",
"State reset": "State reset",
"State reset timestamp": "State reset timestamp",
"Stateless session": "Stateless session",
"Status": "Status",
"STIX IDs": "STIX IDs",
"Stop time": "Stop time",
"Strategy": "Strategy",
"Stream id": "Stream id",
"Street address": "Street address",
"Sub pagination activation": "Sub pagination activation",
"Sub pagination uri path": "Sub pagination uri path",
"Sub pagination verb": "Sub pagination verb",
"Subject": "Subject",
"Subject alternative name": "Subject alternative name",
"Subject directory attributes": "Subject directory attributes",
"Subject key identifier": "Subject key identifier",
"Subject public key algorithm": "Subject public key algorithm",
"Subject public key exponent": "Subject public key exponent",
"Subject public key modulus": "Subject public key modulus",
"Submission date": "Submission date",
"SWID": "SWID",
"Synchronized": "Synchronized",
"Tags": "Tags",
"Takedown types": "Takedown types",
"Target entity": "Target entity",
"Target type": "Target type",
"Targeting propagation via attribution": "Targeting propagation via attribution",
"Targeting propagation via belonging": "Targeting propagation via belonging",
"Targeting propagation via location": "Targeting propagation via location",
"Targeting propagation when located": "Targeting propagation when located",
"Task": "Task",
"Task filters": "Task filters",
"Tasks": "Tasks",
"Taxii response more value": "Taxii response more value",
"Technique": "Technique",
"Technique ID": "Technique ID",
"Telemetry manager": "Telemetry manager",
"TELEMETRY_MANAGER": "Telemetry manager",
"Template": "Template",
"Template and utils": "Template and utils",
"Template body": "Template body",
"Template content": "Template content",
"Template description": "Template description",
"Template filters": "Template filters",
"Template id": "Template id",
"Template ID": "Template ID",
"Template name": "Template name",
"Template widget description": "Template widget description",
"Template widget name": "Template widget name",
"Template widgets IDs": "Template widgets IDs",
"Templates": "Templates",
"Text Color": "Text Color",
"Theme": "Theme",
"Theme accent": "Theme accent",
"Theme background": "Theme background",
"Theme login aside color": "Theme login aside color",
"Theme login aside gradient end": "Theme login aside gradient end",
"Theme login aside gradient start": "Theme login aside gradient start",
"Theme login aside image": "Theme login aside image",
"Theme logo": "Theme logo",
"Theme logo collapsed": "Theme logo collapsed",
"Theme logo login": "Theme logo login",
"Theme nav": "Theme nav",
"Theme paper": "Theme paper",
"Theme primary": "Theme primary",
"Theme secondary": "Theme secondary",
"Theme text color": "Theme text color",
"This list displays all the entities that have some access restriction enabled, meaning that they are only accessible to some specific users. You can remove this access restriction on this screen.": "This list displays all the entities that have some access restriction enabled, meaning that they are only accessible to some specific users. You can remove this access restriction on this screen.",
"Threat actor types": "Threat actor types",
"Threat hunting": "Threat hunting",
"Timestamp": "Timestamp",
"Title": "Title",
"TLSH": "TLSH",
"To": "To",
"to": "to",
"Token": "Token",
"Tool types": "Tool types",
"Tool version": "Tool version",
"Tracking number": "Tracking number",
"Translated": "Translated",
"Translations": "Translations",
"Trigger": "Trigger",
"Trigger for personal notifiers": "Trigger for personal notifiers",
"Trigger IDs": "Trigger IDs",
"Trigger name": "Trigger name",
"Trigger scope": "Trigger scope",
"Trigger time": "Trigger time",
"Trigger type": "Trigger type",
"Type": "Type",
"Type affinity": "Type affinity",
"Type of related entity": "Type of related entity",
"Types": "Types",
"Unit system": "Unit system",
"Unshare with organizations within the platform": "Unshare with organisations within the platform",
"Updated": "Updated",
"Updated at": "Updated at",
"Upload date": "Upload date",
"Upload status": "Upload status",
"Uploaded files": "Uploaded files",