-
Notifications
You must be signed in to change notification settings - Fork 259
/
nice-framework-tasks.json
6519 lines (6519 loc) · 262 KB
/
nice-framework-tasks.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
{
"authors": [
"NIST",
"Jean-Louis Huynen"
],
"category": "workforce",
"description": "Tasks based on the NIST NICE framework",
"name": "NICE Tasks",
"source": "https://csrc.nist.gov/pubs/sp/800/181/r1/final",
"type": "nice-framework-tasks",
"uuid": "6bcf78de-a3fb-4636-90bc-95a86817ad65",
"values": [
{
"description": "Employ secure configuration management processes",
"related": [],
"uuid": "8bff1e4a-7d09-535e-b272-79e281e6bb09",
"value": "Employ secure configuration management processes - T0084"
},
{
"description": "Translate proposed capabilities into technical requirements",
"related": [],
"uuid": "4aea85ca-bd37-5da8-92bd-82db9a0f0653",
"value": "Translate proposed capabilities into technical requirements - T0542"
},
{
"description": "Communicate enterprise information technology architecture",
"related": [],
"uuid": "79b8aadb-ecf8-5b4f-b14e-077e5dd17ed6",
"value": "Communicate enterprise information technology architecture - T1010"
},
{
"description": "Determine special needs of cyber-physical systems",
"related": [],
"uuid": "27fde591-3d44-596d-9e7d-1ff60fb963ba",
"value": "Determine special needs of cyber-physical systems - T1019"
},
{
"description": "Determine the operational and safety impacts of cybersecurity lapses",
"related": [],
"uuid": "07879643-ce6e-5cab-af2d-975e0569136e",
"value": "Determine the operational and safety impacts of cybersecurity lapses - T1020"
},
{
"description": "Integrate organizational goals and objectives into security architecture",
"related": [],
"uuid": "c3664a7c-b611-547f-a5d6-226889bb8ca8",
"value": "Integrate organizational goals and objectives into security architecture - T1027"
},
{
"description": "Implement organizational evaluation and validation criteria",
"related": [],
"uuid": "788c9ac6-444e-535d-90d5-b14208e0b886",
"value": "Implement organizational evaluation and validation criteria - T1029"
},
{
"description": "Assess the organization's cybersecurity architecture",
"related": [],
"uuid": "6ee18892-5c36-5337-827c-0dfe76ebbf09",
"value": "Assess the organization's cybersecurity architecture - T1077"
},
{
"description": "Perform privacy impact assessments (PIAs)",
"related": [],
"uuid": "300a86c1-b6fc-52ed-9220-eafa6fab4fe7",
"value": "Perform privacy impact assessments (PIAs) - T1096"
},
{
"description": "Configure network hubs, routers, and switches",
"related": [],
"uuid": "490a578a-31a2-51ff-a4e1-99eed0faa06f",
"value": "Configure network hubs, routers, and switches - T1100"
},
{
"description": "Optimize network hubs, routers, and switches",
"related": [],
"uuid": "60cd5453-4482-5bd6-ad31-429d67f94c23",
"value": "Optimize network hubs, routers, and switches - T1101"
},
{
"description": "Determine essential system capabilities and business functions",
"related": [],
"uuid": "a0895c62-c4d5-5692-b16f-846d49e5a9e4",
"value": "Determine essential system capabilities and business functions - T1122"
},
{
"description": "Prioritize essential system capabilities and business functions",
"related": [],
"uuid": "e803b7cf-e285-5f4d-9076-9834081e7923",
"value": "Prioritize essential system capabilities and business functions - T1123"
},
{
"description": "Restore essential system capabilities and business functions after catastrophic failure events",
"related": [],
"uuid": "a5d8ac07-7f8a-5cbd-b73f-c7600f4711dc",
"value": "Restore essential system capabilities and business functions after catastrophic failure events - T1124"
},
{
"description": "Define system availability levels",
"related": [],
"uuid": "34a31ddd-f2ac-5d3c-8cb6-9c437ee385fd",
"value": "Define system availability levels - T1125"
},
{
"description": "Determine disaster recovery and continuity of operations system requirements",
"related": [],
"uuid": "cbcef3ff-e4b5-573e-b36d-146ea0321c56",
"value": "Determine disaster recovery and continuity of operations system requirements - T1126"
},
{
"description": "Develop cybersecurity designs for systems and networks with multilevel security requirements",
"related": [],
"uuid": "36615262-d3e9-52b0-bf78-92d9afb77291",
"value": "Develop cybersecurity designs for systems and networks with multilevel security requirements - T1151"
},
{
"description": "Develop cybersecurity designs for systems and networks that require processing of multiple data classification levels",
"related": [],
"uuid": "cd020251-8bef-522b-823d-96b048fef3c1",
"value": "Develop cybersecurity designs for systems and networks that require processing of multiple data classification levels - T1152"
},
{
"description": "Integrate cybersecurity designs for systems and networks",
"related": [],
"uuid": "650ca951-cd7e-52e7-8fff-4ecf222e3531",
"value": "Integrate cybersecurity designs for systems and networks - T1153"
},
{
"description": "Define acquisition life cycle cybersecurity architecture requirements",
"related": [],
"uuid": "cfb20094-eee6-5938-9a90-db99898aa484",
"value": "Define acquisition life cycle cybersecurity architecture requirements - T1168"
},
{
"description": "Define acquisition life cycle systems security engineering requirements",
"related": [],
"uuid": "cbf0a112-8d72-52dd-baf4-b3da927477d2",
"value": "Define acquisition life cycle systems security engineering requirements - T1169"
},
{
"description": "Determine if systems and architecture are consistent with cybersecurity architecture guidelines",
"related": [],
"uuid": "9171a0bb-97cb-5bad-b41b-f6dd3d2738da",
"value": "Determine if systems and architecture are consistent with cybersecurity architecture guidelines - T1179"
},
{
"description": "Perform security reviews",
"related": [],
"uuid": "251537f0-b0c6-5cb4-86d4-8c4a8543d487",
"value": "Perform security reviews - T1263"
},
{
"description": "Identify gaps in security architecture",
"related": [],
"uuid": "98c25dc1-b432-59ab-a874-f4db9700d41a",
"value": "Identify gaps in security architecture - T1264"
},
{
"description": "Develop a cybersecurity risk management plan",
"related": [],
"uuid": "1421c3bc-1ef2-5b98-a145-a3414159540e",
"value": "Develop a cybersecurity risk management plan - T1265"
},
{
"description": "Advise on security requirements to be included in statements of work",
"related": [],
"uuid": "287ed80e-7a8e-5e43-a002-404748cd6584",
"value": "Advise on security requirements to be included in statements of work - T1293"
},
{
"description": "Advise on Risk Management Framework process activities and documentation",
"related": [],
"uuid": "49c1c17e-57ad-5c65-aa7a-a3e6e13c1f93",
"value": "Advise on Risk Management Framework process activities and documentation - T1294"
},
{
"description": "Determine the impact of new system and interface implementations on organization's cybersecurity posture",
"related": [],
"uuid": "18caf8b7-c76a-59b5-9347-75111625c8a5",
"value": "Determine the impact of new system and interface implementations on organization's cybersecurity posture - T1361"
},
{
"description": "Document impact of new system and interface implementations on organization's cybersecurity posture",
"related": [],
"uuid": "0d724994-72ac-5db1-9a6f-14ddf1ef3be9",
"value": "Document impact of new system and interface implementations on organization's cybersecurity posture - T1362"
},
{
"description": "Plan system security development",
"related": [],
"uuid": "c5253504-a6bd-5dd7-b980-1718988fd0b3",
"value": "Plan system security development - T1363"
},
{
"description": "Conduct system security development",
"related": [],
"uuid": "1e4d797b-bc66-5a02-bf93-dbffc6214df4",
"value": "Conduct system security development - T1364"
},
{
"description": "Allocate cybersecurity services",
"related": [],
"uuid": "65609788-de4d-5f53-bb70-15a3af880ea2",
"value": "Allocate cybersecurity services - T1403"
},
{
"description": "Select cybersecurity mechanisms",
"related": [],
"uuid": "f11a20a0-6644-568e-954d-507d323b4809",
"value": "Select cybersecurity mechanisms - T1404"
},
{
"description": "Develop system security contexts",
"related": [],
"uuid": "8f2ab070-5a93-5208-b276-7ad369c16388",
"value": "Develop system security contexts - T1410"
},
{
"description": "Create system security concept of operations (ConOps) documents",
"related": [],
"uuid": "b9cd61d9-2b23-535a-9c03-ecdd7fc24ec6",
"value": "Create system security concept of operations (ConOps) documents - T1423"
},
{
"description": "Determine cybersecurity design and architecture effectiveness",
"related": [],
"uuid": "f910abad-e99b-524c-88a6-e34eea1cc78d",
"value": "Determine cybersecurity design and architecture effectiveness - T1426"
},
{
"description": "Create cybersecurity architecture functional specifications",
"related": [],
"uuid": "acfb1e58-03fd-5b9d-81cc-014ff74782cb",
"value": "Create cybersecurity architecture functional specifications - T1434"
},
{
"description": "Determine user requirements",
"related": [],
"uuid": "a190d419-307e-56fe-90ce-3d931015a8f9",
"value": "Determine user requirements - T1507"
},
{
"description": "Plan cybersecurity architecture",
"related": [],
"uuid": "1b39be56-1dd9-51c6-bc23-c48e1e797358",
"value": "Plan cybersecurity architecture - T1508"
},
{
"description": "Design system security measures",
"related": [],
"uuid": "490f0d80-caa1-520a-86c4-7653264f0a93",
"value": "Design system security measures - T1519"
},
{
"description": "Update system security measures",
"related": [],
"uuid": "14585968-7335-5774-ace2-72968e1177ae",
"value": "Update system security measures - T1520"
},
{
"description": "Develop enterprise architecture",
"related": [],
"uuid": "cdff3f8b-53d7-5d76-8326-6b5c915c8923",
"value": "Develop enterprise architecture - T1521"
},
{
"description": "Define baseline system security requirements",
"related": [],
"uuid": "192155ab-745f-5a31-a344-11866a12cb7c",
"value": "Define baseline system security requirements - T1527"
},
{
"description": "Create definition activity documentation",
"related": [],
"uuid": "9517f98b-acc6-50f8-a83c-c1c670409633",
"value": "Create definition activity documentation - T1544"
},
{
"description": "Create architecture activity documentation",
"related": [],
"uuid": "04d896ee-93a3-50d3-b602-be01a54de8ed",
"value": "Create architecture activity documentation - T1545"
},
{
"description": "Identify system and network protection needs",
"related": [],
"uuid": "cc09f262-6665-55e7-b29f-571a11cded34",
"value": "Identify system and network protection needs - T1556"
},
{
"description": "Implement system security measures",
"related": [],
"uuid": "1d2d0316-1a7f-58e0-aa34-74af6bbb0fa1",
"value": "Implement system security measures - T1563"
},
{
"description": "Determine effectiveness of system implementation and testing processes",
"related": [],
"uuid": "1b805d0c-a1f1-54c5-ba3d-d47f4d0932df",
"value": "Determine effectiveness of system implementation and testing processes - T1583"
},
{
"description": "Conduct cybersecurity management assessments",
"related": [],
"uuid": "b74990a9-e7aa-5d56-8afe-051e2d59ee2a",
"value": "Conduct cybersecurity management assessments - T1627"
},
{
"description": "Design cybersecurity management functions",
"related": [],
"uuid": "1efdc40a-9299-5631-8b54-01dc8c8cab10",
"value": "Design cybersecurity management functions - T1628"
},
{
"description": "Develop secure code and error handling",
"related": [],
"uuid": "ec37e9c0-93f9-57cd-960b-13305a8f6f07",
"value": "Develop secure code and error handling - T0077"
},
{
"description": "Consult with customers about software system design and maintenance",
"related": [],
"uuid": "46b964d0-baf8-532a-8a06-4f101fe8b93a",
"value": "Consult with customers about software system design and maintenance - T0311"
},
{
"description": "Recommend development of new applications or modification of existing applications",
"related": [],
"uuid": "ecc44267-9faa-5200-90e1-2831f25b0866",
"value": "Recommend development of new applications or modification of existing applications - T1067"
},
{
"description": "Create development plans for new applications or modification of existing applications",
"related": [],
"uuid": "edd41447-5602-53d0-b21d-51e67e6d4d3e",
"value": "Create development plans for new applications or modification of existing applications - T1068"
},
{
"description": "Evaluate software design plan timelines and cost estimates",
"related": [],
"uuid": "84904ac3-42a0-5bb6-8aa2-0c29036c04aa",
"value": "Evaluate software design plan timelines and cost estimates - T1071"
},
{
"description": "Perform code reviews",
"related": [],
"uuid": "9bbf5002-e1c7-551c-92ea-a1440f382780",
"value": "Perform code reviews - T1073"
},
{
"description": "Prepare secure code documentation",
"related": [],
"uuid": "df759ece-26d6-5664-a64f-bf767c94fd96",
"value": "Prepare secure code documentation - T1074"
},
{
"description": "Integrate software cybersecurity objectives into project plans and schedules",
"related": [],
"uuid": "a9612328-263c-5246-8bad-7c802f3086cc",
"value": "Integrate software cybersecurity objectives into project plans and schedules - T1082"
},
{
"description": "Determine project security controls",
"related": [],
"uuid": "2a51ad41-46b8-5b4d-bd2e-d75f7dd1da54",
"value": "Determine project security controls - T1083"
},
{
"description": "Create program documentation during initial development and subsequent revision phases",
"related": [],
"uuid": "764caf3d-cbe8-55a0-8bc0-9b5826d4f3c1",
"value": "Create program documentation during initial development and subsequent revision phases - T1089"
},
{
"description": "Determine system performance requirements",
"related": [],
"uuid": "4d74e300-d2d5-522c-9024-122f5e432c06",
"value": "Determine system performance requirements - T1098"
},
{
"description": "Design application interfaces",
"related": [],
"uuid": "c7d83380-cfa4-5414-870b-76484415b307",
"value": "Design application interfaces - T1099"
},
{
"description": "Evaluate interfaces between hardware and software",
"related": [],
"uuid": "4a467bfd-8d27-56c3-930d-4ad1d6b0bf74",
"value": "Evaluate interfaces between hardware and software - T1108"
},
{
"description": "Correct program errors",
"related": [],
"uuid": "d30c0988-25bf-559e-b4da-1b3b3d3b1392",
"value": "Correct program errors - T1116"
},
{
"description": "Determine if desired program results are produced",
"related": [],
"uuid": "e7f315c7-6794-5050-b718-a14182a492f1",
"value": "Determine if desired program results are produced - T1117"
},
{
"description": "Design and develop software systems",
"related": [],
"uuid": "f987ca42-85ba-580d-9517-a1522b0e6c66",
"value": "Design and develop software systems - T1135"
},
{
"description": "Determine hardware configuration",
"related": [],
"uuid": "9344929b-ec05-56f3-96ed-6b28ae920c00",
"value": "Determine hardware configuration - T1190"
},
{
"description": "Identify common coding flaws",
"related": [],
"uuid": "a5f5c44c-6daa-5b0d-8c65-199f0d6a62af",
"value": "Identify common coding flaws - T1197"
},
{
"description": "Determine software development security implications within centralized and decentralized environments across the enterprise",
"related": [],
"uuid": "69330ddf-ba43-5367-88fd-cc35c360c419",
"value": "Determine software development security implications within centralized and decentralized environments across the enterprise - T1202"
},
{
"description": "Implement software development cybersecurity methodologies within centralized and decentralized environments across the enterprise",
"related": [],
"uuid": "7fefaea9-336e-5b42-82ae-8e4484d0e9d9",
"value": "Implement software development cybersecurity methodologies within centralized and decentralized environments across the enterprise - T1203"
},
{
"description": "Determine cybersecurity measures for steady state operation and management of software",
"related": [],
"uuid": "65807c8d-911e-5ed9-867b-4f5b54ee5920",
"value": "Determine cybersecurity measures for steady state operation and management of software - T1204"
},
{
"description": "Incorporate product end-of-life cybersecurity measures",
"related": [],
"uuid": "92da1e6c-8993-502a-8595-ed844aad239f",
"value": "Incorporate product end-of-life cybersecurity measures - T1205"
},
{
"description": "Perform integrated quality assurance testing",
"related": [],
"uuid": "7e66254f-6329-5b56-9067-ae1be9a0bf24",
"value": "Perform integrated quality assurance testing - T1258"
},
{
"description": "Mitigate programming vulnerabilities",
"related": [],
"uuid": "336a9223-8700-57d7-9067-e8a2c2f0632a",
"value": "Mitigate programming vulnerabilities - T1261"
},
{
"description": "Identify programming code flaws",
"related": [],
"uuid": "173e60f3-e1c9-511b-b762-d884605aa326",
"value": "Identify programming code flaws - T1262"
},
{
"description": "Conduct risk analysis of applications and systems undergoing major changes",
"related": [],
"uuid": "0e459f4d-cc70-5d3f-8996-7e1e34f2959a",
"value": "Conduct risk analysis of applications and systems undergoing major changes - T1269"
},
{
"description": "Develop workflow charts and diagrams",
"related": [],
"uuid": "a0937b5b-56e7-5d65-8253-2c7772337cee",
"value": "Develop workflow charts and diagrams - T1280"
},
{
"description": "Convert workflow charts and diagrams into coded computer language instructions",
"related": [],
"uuid": "bac4b901-cc7f-5bd5-88a2-3e0f07b8d47a",
"value": "Convert workflow charts and diagrams into coded computer language instructions - T1281"
},
{
"description": "Address security implications in the software acceptance phase",
"related": [],
"uuid": "250675b2-a6d3-5546-898e-93e1ae23f062",
"value": "Address security implications in the software acceptance phase - T1302"
},
{
"description": "Analyze system capabilities and requirements",
"related": [],
"uuid": "5b5b9de6-b7ae-51cd-bba4-556645d97396",
"value": "Analyze system capabilities and requirements - T1309"
},
{
"description": "Integrate security requirements into application design elements",
"related": [],
"uuid": "b05fcffb-f088-54b0-86b9-e11665517205",
"value": "Integrate security requirements into application design elements - T1318"
},
{
"description": "Document software attack surface elements",
"related": [],
"uuid": "1c32acd1-c147-547b-9688-1e2b5220c68e",
"value": "Document software attack surface elements - T1319"
},
{
"description": "Conduct threat modeling",
"related": [],
"uuid": "aa97e4e7-fd42-5fd5-a17c-d521a68fc806",
"value": "Conduct threat modeling - T1320"
},
{
"description": "Design programming language exploitation countermeasures and mitigations",
"related": [],
"uuid": "654331c4-ad47-54f4-a8d1-7bcb63e2cfa3",
"value": "Design programming language exploitation countermeasures and mitigations - T1360"
},
{
"description": "Design and develop secure applications",
"related": [],
"uuid": "97693b72-e88d-5440-a6f9-91b03817a826",
"value": "Design and develop secure applications - T1400"
},
{
"description": "Develop software documentation",
"related": [],
"uuid": "cae77688-6c0a-5a2b-b403-433388aec6f2",
"value": "Develop software documentation - T1422"
},
{
"description": "Integrate public key cryptography into applications",
"related": [],
"uuid": "52d9d8fc-8695-5f8d-920e-858162e11afe",
"value": "Integrate public key cryptography into applications - T1499"
},
{
"description": "Analyze feasibility of software design within time and cost constraints",
"related": [],
"uuid": "00658566-ae9e-5693-9ee5-511b59c940ef",
"value": "Analyze feasibility of software design within time and cost constraints - T1509"
},
{
"description": "Conduct trial runs of programs and software applications",
"related": [],
"uuid": "f1ebb069-18e1-5cf4-9b79-bf7b1ba04854",
"value": "Conduct trial runs of programs and software applications - T1513"
},
{
"description": "Develop software system testing and validation procedures",
"related": [],
"uuid": "eb68e74d-710c-5ff3-ae06-67341341a318",
"value": "Develop software system testing and validation procedures - T1528"
},
{
"description": "Create software system documentation",
"related": [],
"uuid": "5634da1b-ee4f-5dce-9cf9-2c5f97693347",
"value": "Create software system documentation - T1529"
},
{
"description": "Adapt software to new hardware",
"related": [],
"uuid": "8b8a5569-4c2a-54bc-b9a6-c6d9c914b99e",
"value": "Adapt software to new hardware - T1575"
},
{
"description": "Upgrade software interfaces",
"related": [],
"uuid": "2bf6b9f5-8e25-588d-a621-1e126930a9ec",
"value": "Upgrade software interfaces - T1576"
},
{
"description": "Improve software performance",
"related": [],
"uuid": "b0d6b05b-0bbb-55a4-a52d-6b5b4884f34b",
"value": "Improve software performance - T1577"
},
{
"description": "Conduct vulnerability analysis of software patches and updates",
"related": [],
"uuid": "8379d0da-4089-5d0c-af82-b115e1cd2be2",
"value": "Conduct vulnerability analysis of software patches and updates - T1624"
},
{
"description": "Prepare vulnerability analysis reports",
"related": [],
"uuid": "a4902834-2c15-5b32-99a9-43662d3d42bf",
"value": "Prepare vulnerability analysis reports - T1625"
},
{
"description": "Implement security designs for new or existing systems",
"related": [],
"uuid": "7f7444cd-9bb9-50ee-b93d-271a7d913b6c",
"value": "Implement security designs for new or existing systems - T0122"
},
{
"description": "Incorporate cybersecurity vulnerability solutions into system designs (e.g., Cybersecurity Vulnerability Alerts)",
"related": [],
"uuid": "577de367-3b46-5a99-a35d-a35bdd322ebf",
"value": "Incorporate cybersecurity vulnerability solutions into system designs (e.g., Cybersecurity Vulnerability Alerts) - T0124"
},
{
"description": "Develop cybersecurity designs to meet specific operational needs and environmental factors (e.g., access controls, automated applications, networked operations, high integrity and availability requirements, multilevel security/processing of multiple classification levels, and processing Sensitive Compartmented Information)",
"related": [],
"uuid": "e6b60872-96c1-5552-a505-2d3ae9b4a153",
"value": "Develop cybersecurity designs to meet specific operational needs and environmental factors (e.g., access controls, automated applications, networked o - T0271"
},
{
"description": "Review enterprise information technology (IT) goals and objectives",
"related": [],
"uuid": "97a2f7f9-9983-55c0-80c6-f2d7a731f0c5",
"value": "Review enterprise information technology (IT) goals and objectives - T1022"
},
{
"description": "Determine procurement requirements",
"related": [],
"uuid": "ac1dd0d4-6aa4-5919-aff0-72f69d8688cc",
"value": "Determine procurement requirements - T1026"
},
{
"description": "Estimate the impact of collateral damage",
"related": [],
"uuid": "874d14a7-1d03-56fc-8d05-1019dafe4438",
"value": "Estimate the impact of collateral damage - T1030"
},
{
"description": "Determine impact of software configurations",
"related": [],
"uuid": "a005dabf-636d-5c78-8097-9e4760d727f2",
"value": "Determine impact of software configurations - T1041"
},
{
"description": "Assess operation performance",
"related": [],
"uuid": "5914a140-8cb5-558f-a74b-423c783948fd",
"value": "Assess operation performance - T1046"
},
{
"description": "Assess operation impact",
"related": [],
"uuid": "ab618206-2df2-57ff-916a-0b7fa016d2c2",
"value": "Assess operation impact - T1047"
},
{
"description": "Determine life cycle support requirements",
"related": [],
"uuid": "02471da1-f2f4-5dba-96e5-a344ce8b907e",
"value": "Determine life cycle support requirements - T1072"
},
{
"description": "Implement application cybersecurity policies",
"related": [],
"uuid": "1777cc43-de1e-50ed-a5aa-e8602bdf6edc",
"value": "Implement application cybersecurity policies - T1075"
},
{
"description": "Determine effectiveness of system cybersecurity measures",
"related": [],
"uuid": "f1fe2918-eb75-5651-af04-ab672a4ee366",
"value": "Determine effectiveness of system cybersecurity measures - T1078"
},
{
"description": "Develop cybersecurity risk profiles",
"related": [],
"uuid": "66f62ba1-a9cd-5b8d-90a8-4e29f8300ef6",
"value": "Develop cybersecurity risk profiles - T1079"
},
{
"description": "Create product prototypes using working and theoretical models",
"related": [],
"uuid": "8ea14df6-0096-58af-82bc-f93a0cf42c1e",
"value": "Create product prototypes using working and theoretical models - T1081"
},
{
"description": "Identify anomalous network activity",
"related": [],
"uuid": "980e2118-5472-53f1-804c-0a7aa9c0e17b",
"value": "Identify anomalous network activity - T1084"
},
{
"description": "Identify vulnerabilities",
"related": [],
"uuid": "b3c5f1ed-1cb6-5c0b-a000-304fbfa4ae92",
"value": "Identify vulnerabilities - T1118"
},
{
"description": "Recommend vulnerability remediation strategies",
"related": [],
"uuid": "dd6f8009-5e6e-5a14-97b8-e5855499e9ab",
"value": "Recommend vulnerability remediation strategies - T1119"
},
{
"description": "Design cybersecurity or cybersecurity-enabled products",
"related": [],
"uuid": "d6cb403f-ead4-545d-9689-8841c8b2fe97",
"value": "Design cybersecurity or cybersecurity-enabled products - T1128"
},
{
"description": "Develop cybersecurity or cybersecurity-enabled products",
"related": [],
"uuid": "905c7fcb-c67a-5bc0-97e4-e3684d94a2a6",
"value": "Develop cybersecurity or cybersecurity-enabled products - T1129"
},
{
"description": "Determine if hardware, operating systems, and software applications adequately address cybersecurity requirements",
"related": [],
"uuid": "b7ad35bc-c67e-5c1f-ac28-e2f934362352",
"value": "Determine if hardware, operating systems, and software applications adequately address cybersecurity requirements - T1131"
},
{
"description": "Design system data backup capabilities",
"related": [],
"uuid": "0ba17638-c767-537c-82a9-8b1fd8a202a4",
"value": "Design system data backup capabilities - T1132"
},
{
"description": "Develop technical and procedural processes for integrity of stored backup data",
"related": [],
"uuid": "54f8dc5e-895f-5986-bdbd-f22c2259dd16",
"value": "Develop technical and procedural processes for integrity of stored backup data - T1133"
},
{
"description": "Develop technical and procedural processes for backup data storage",
"related": [],
"uuid": "e378d2d6-f996-5f15-9068-ca5c64838f60",
"value": "Develop technical and procedural processes for backup data storage - T1134"
},
{
"description": "Create system testing and validation procedures and documentation",
"related": [],
"uuid": "25ac4e48-3e3e-55fb-9721-cab061787c74",
"value": "Create system testing and validation procedures and documentation - T1138"
},
{
"description": "Develop systems security design documentation",
"related": [],
"uuid": "dbfda627-7eb8-57ec-b742-992f546df64b",
"value": "Develop systems security design documentation - T1148"
},
{
"description": "Develop disaster recovery and continuity of operations plans for systems under development",
"related": [],
"uuid": "75e2ca42-6b93-5737-9955-0590016f66e1",
"value": "Develop disaster recovery and continuity of operations plans for systems under development - T1149"
},
{
"description": "Test disaster recovery and continuity of operations plans for systems prior to deployment",
"related": [],
"uuid": "b4a23e68-13ac-58b1-92e5-0be6c5fd444a",
"value": "Test disaster recovery and continuity of operations plans for systems prior to deployment - T1150"
},
{
"description": "Develop risk mitigation strategies",
"related": [],
"uuid": "fb812192-c46f-5105-9ac9-a8819db78fa0",
"value": "Develop risk mitigation strategies - T1160"
},
{
"description": "Resolve system vulnerabilities",
"related": [],
"uuid": "2c71ba4c-c711-5e6b-9249-42987222be79",
"value": "Resolve system vulnerabilities - T1161"
},
{
"description": "Recommend security changes to systems and system components",
"related": [],
"uuid": "dde08582-93bb-5438-95ef-e2301652abb3",
"value": "Recommend security changes to systems and system components - T1162"
},
{
"description": "Develop cybersecurity countermeasures for systems and applications",
"related": [],
"uuid": "025ada71-5163-5dc4-891d-81eb1fc0bcb5",
"value": "Develop cybersecurity countermeasures for systems and applications - T1163"
},
{
"description": "Develop risk mitigation strategies for systems and applications",
"related": [],
"uuid": "752c4994-b144-58f6-be14-f7d06d0be8ec",
"value": "Develop risk mitigation strategies for systems and applications - T1164"
},
{
"description": "Allocate security functions to components and elements",
"related": [],
"uuid": "2d6a4f2f-4e35-55a2-be89-f716dfbe90c5",
"value": "Allocate security functions to components and elements - T1193"
},
{
"description": "Remediate technical problems encountered during system testing and implementation",
"related": [],
"uuid": "3e1bf749-619d-58ce-a587-7d6b18a5868f",
"value": "Remediate technical problems encountered during system testing and implementation - T1194"
},
{
"description": "Direct the remediation of technical problems encountered during system testing and implementation",
"related": [],
"uuid": "d550b52f-b320-5619-a868-19f0a713fe3e",
"value": "Direct the remediation of technical problems encountered during system testing and implementation - T1195"
},
{
"description": "Recommend cybersecurity or cybersecurity-enabled products for use within a system",
"related": [],
"uuid": "bdd276c2-0a31-57d1-a041-74e5285e313c",
"value": "Recommend cybersecurity or cybersecurity-enabled products for use within a system - T1206"
},
{
"description": "Develop guidelines for implementing developed systems for customers and installation teams",
"related": [],
"uuid": "1470fe09-8825-5c10-93cd-b3773a97ecc8",
"value": "Develop guidelines for implementing developed systems for customers and installation teams - T1292"
},
{
"description": "Conduct test and evaluation activities",
"related": [],
"uuid": "c7be2ee2-460c-50b3-aa41-f3326bf4d06f",
"value": "Conduct test and evaluation activities - T1312"
},
{
"description": "Develop system performance predictions for various operating conditions",
"related": [],
"uuid": "c51c054c-3703-576d-861a-ae19e896740b",
"value": "Develop system performance predictions for various operating conditions - T1326"
},
{
"description": "Document cybersecurity design and development activities",
"related": [],
"uuid": "cad00481-419e-591a-b68c-4db362f7c4fd",
"value": "Document cybersecurity design and development activities - T1365"
},
{
"description": "Integrate system development life cycle methodologies into development environment",
"related": [],
"uuid": "49638374-1606-5ca4-ad4d-3fc93ac31c67",
"value": "Integrate system development life cycle methodologies into development environment - T1401"
},
{
"description": "Design secure interfaces between information systems, physical systems, and embedded technologies",
"related": [],
"uuid": "aff7aa41-28eb-5463-be93-e6ca79fbaf25",
"value": "Design secure interfaces between information systems, physical systems, and embedded technologies - T1454"
},
{
"description": "Implement secure interfaces between information systems, physical systems, and embedded technologies",
"related": [],
"uuid": "b01ffb32-405b-5c70-bacb-aeab237eceee",
"value": "Implement secure interfaces between information systems, physical systems, and embedded technologies - T1455"
},
{
"description": "Correlate incident data",
"related": [],
"uuid": "2e107712-cf80-5126-8d77-c21424dd520b",
"value": "Correlate incident data - T1489"
},
{
"description": "Determine if systems meet minimum security requirements",
"related": [],
"uuid": "63411911-77e8-5acf-b962-a95cec818a53",
"value": "Determine if systems meet minimum security requirements - T1522"
},
{
"description": "Establish minimum security requirements for applications",
"related": [],
"uuid": "17758d5c-b55c-5688-9dc8-95925ebaa1b9",
"value": "Establish minimum security requirements for applications - T1584"
},
{
"description": "Determine if applications meet minimum security requirements",
"related": [],
"uuid": "a2658343-7b53-58e5-bf97-a252092997ac",
"value": "Determine if applications meet minimum security requirements - T1585"
},
{
"description": "Conduct cybersecurity risk assessments",
"related": [],
"uuid": "7513ee80-5a15-56da-b89f-bba8f49573bb",
"value": "Conduct cybersecurity risk assessments - T1586"
},
{
"description": "Conduct cybersecurity reviews",
"related": [],
"uuid": "a366dcfa-c212-5bce-afea-7360b48478cf",
"value": "Conduct cybersecurity reviews - T1592"
},
{
"description": "Identify cybersecurity gaps in enterprise architecture",
"related": [],
"uuid": "451398c1-b1de-579a-9103-d7a948c0fbbf",
"value": "Identify cybersecurity gaps in enterprise architecture - T1593"
},
{
"description": "Provide cybersecurity advice on implementation plans, standard operating procedures, maintenance documentation, and maintenance training materials",
"related": [],
"uuid": "e1b79ab7-9e63-5097-8cf2-dd9d60247711",
"value": "Provide cybersecurity advice on implementation plans, standard operating procedures, maintenance documentation, and maintenance training materials - T1604"
},
{
"description": "Determine if design components meet system requirements",
"related": [],
"uuid": "4cc17b60-cb62-5b13-a33b-548d0e4520fd",
"value": "Determine if design components meet system requirements - T1613"
},
{
"description": "Determine scalability of system architecture",
"related": [],
"uuid": "a3e9880f-65fb-5c75-9373-57f48e93770a",
"value": "Determine scalability of system architecture - T1614"
},
{
"description": "Incorporate intelligence equities into the overall design of cyber operations plans",
"related": [],
"uuid": "bfed2c5a-890a-5987-b410-c337c95bfac3",
"value": "Incorporate intelligence equities into the overall design of cyber operations plans - T0630"
},
{
"description": "Incorporate cyber operations and communications security support plans into organization objectives",
"related": [],
"uuid": "a7b7112b-e535-5db1-8a0d-d863f3086293",
"value": "Incorporate cyber operations and communications security support plans into organization objectives - T0704"
},
{
"description": "Identify intelligence gaps and shortfalls",
"related": [],
"uuid": "b7aea31b-eb44-55ff-a91b-34df13a0d109",
"value": "Identify intelligence gaps and shortfalls - T0718"
},
{
"description": "Issue requests for information",
"related": [],
"uuid": "c0ca98a4-cc21-54be-9455-6d8aee79f0a3",
"value": "Issue requests for information - T0734"
},
{
"description": "Maintain situational awareness of cyber-related intelligence requirements and associated tasking",
"related": [],
"uuid": "e52d8d24-e58f-5d8d-986a-ef95e756c5db",
"value": "Maintain situational awareness of cyber-related intelligence requirements and associated tasking - T0741"
},
{
"description": "Maintain situational awareness of partner capabilities and activities",
"related": [],
"uuid": "bfa7f8c2-6c39-5f0a-bb18-5238eed7619a",
"value": "Maintain situational awareness of partner capabilities and activities - T0742"
},
{
"description": "Support cyber operations",
"related": [],
"uuid": "76b01c60-8307-5bea-9dfa-6d6ae9d81add",
"value": "Support cyber operations - T1033"
},
{
"description": "Integrate leadership priorities",
"related": [],
"uuid": "e0e59457-f684-5fc8-9506-af30ac7d4db9",
"value": "Integrate leadership priorities - T1036"
},
{
"description": "Develop operations strategies",
"related": [],
"uuid": "e686347d-a042-562d-84d4-faf0d8e12aa0",
"value": "Develop operations strategies - T1037"
},
{
"description": "Integrate organization objectives in intelligence collection",
"related": [],
"uuid": "b0bf43e5-63bc-5df5-9608-8b142c03334a",
"value": "Integrate organization objectives in intelligence collection - T1038"
},
{
"description": "Determine staffing needs",
"related": [],
"uuid": "5b7970fd-f4c8-5a8a-988c-cf400ed64ad7",
"value": "Determine staffing needs - T1043"
},
{
"description": "Review course of action analysis results",
"related": [],
"uuid": "67b09d8f-4e7e-5749-a8fc-1c132ce0e2a3",
"value": "Review course of action analysis results - T1044"
},
{
"description": "Review exercise analysis results",
"related": [],
"uuid": "7679a8ce-683f-5c34-b96b-6b68021d237f",
"value": "Review exercise analysis results - T1045"
},
{
"description": "Synchronize operational assessment procedures and critical information requirement processes",
"related": [],
"uuid": "a3255b89-1448-521d-bff1-47c559addf1e",
"value": "Synchronize operational assessment procedures and critical information requirement processes - T1048"
},
{
"description": "Scope analysis reports to various audiences that accounts for data sharing classification restrictions",
"related": [],
"uuid": "1cccdce7-c1c5-57a8-827b-d19561080f94",
"value": "Scope analysis reports to various audiences that accounts for data sharing classification restrictions - T1054"
},
{
"description": "Determine if priority information requirements are satisfied",
"related": [],
"uuid": "7ccb96da-6709-5ca0-bccd-cd88b90a0900",