-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathssdf.json
More file actions
5424 lines (5424 loc) · 186 KB
/
ssdf.json
File metadata and controls
5424 lines (5424 loc) · 186 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
{
"title": "Secure Software Development Framework (SSDF) Version 1.1: Recommendations for Mitigating the Risk of Software Vulnerabilities",
"version": "1.1",
"lastUpdated": "2022-02-03",
"_meta": {
"generatedBy": "https://github.com/mkmurali",
"generatedOn": "2023-06-02T04:07:30.435Z",
"source": "https://csrc.nist.gov/csrc/media/Publications/sp/800-218/final/documents/NIST.SP.800-218.SSDF-table.xlsx"
},
"groups": [
{
"groupId": "PO",
"title": "Prepare the Organization",
"description": "Organizations should ensure that their people, processes, and technology are prepared to perform secure software development at the organization level. Many organizations will find some PO practices to also be applicable to subsets of their software development, like individual development groups or projects.",
"practices": [
{
"practiceId": "PO.1",
"title": "Define Security Requirements for Software Development",
"description": "Ensure that security requirements for software development are known at all times so that they can be taken into account throughout the SDLC and duplication of effort can be minimized because the requirements information can be collected once and shared. This includes requirements from internal sources (e.g., the organization’s policies, business objectives, and risk management strategy) and external sources (e.g., applicable laws and regulations).",
"tasks": [
{
"taskId": "PO.1.1",
"description": "Identify and document all security requirements for the organization’s software development infrastructures and processes, and maintain the requirements over time.",
"examples": [
{
"exampleId": "Example 1",
"description": "Define policies for securing software development infrastructures and their components, including development endpoints, throughout the SDLC and maintaining that security."
},
{
"exampleId": "Example 2",
"description": "Define policies for securing software development processes throughout the SDLC and maintaining that security, including for open-source and other third-party software components utilized by software being developed."
},
{
"exampleId": "Example 3",
"description": "Review and update security requirements at least annually, or sooner if there are new requirements from internal or external sources, or a major security incident targeting software development infrastructure has occurred."
},
{
"exampleId": "Example 4",
"description": "Educate affected individuals on impending changes to requirements."
}
],
"references": [
{
"referenceId": "BSAFSS",
"sections": [
"SM.3",
"DE.1",
"IA.1",
"IA.2"
]
},
{
"referenceId": "BSIMM",
"sections": [
"CP1.1",
"CP1.3",
"SR1.1",
"SR2.2",
"SE1.2",
"SE2.6"
]
},
{
"referenceId": "EO14028",
"sections": [
"4e(ix)"
]
},
{
"referenceId": "IEC62443",
"sections": [
"SM-7",
"SM-9"
]
},
{
"referenceId": "NISTCSF",
"sections": [
"ID.GV-3"
]
},
{
"referenceId": "OWASPASVS",
"sections": [
"1.1.1"
]
},
{
"referenceId": "OWASPMASVS",
"sections": [
"1.10"
]
},
{
"referenceId": "OWASPSAMM",
"sections": [
"PC1-A",
"PC1-B",
"PC2-A"
]
},
{
"referenceId": "PCISSLC",
"sections": [
"2.1",
"2.2"
]
},
{
"referenceId": "SCFPSSD",
"sections": [
"Planning the Implementation and Deployment of Secure Development Practices"
]
},
{
"referenceId": "SP80053",
"sections": [
"SA-1",
"SA-8",
"SA-15",
"SR-3"
]
},
{
"referenceId": "SP800160",
"sections": [
"3.1.2",
"3.2.1",
"3.2.2",
"3.3.1",
"3.4.2",
"3.4.3"
]
},
{
"referenceId": "SP800161",
"sections": [
"SA-1",
"SA-8",
"SA-15",
"SR-3"
]
},
{
"referenceId": "SP800181",
"sections": [
"T0414",
"K0003",
"K0039",
"K0044",
"K0157",
"K0168",
"K0177",
"K0211",
"K0260",
"K0261",
"K0262",
"K0524",
"S0010",
"S0357",
"S0368",
"A0033",
"A0123",
"A0151"
]
}
]
},
{
"taskId": "PO.1.2",
"description": "Identify and document all security requirements for organization-developed software to meet, and maintain the requirements over time.",
"examples": [
{
"exampleId": "Example 1",
"description": "Define policies that specify risk-based software architecture and design requirements, such as making code modular to facilitate code reuse and updates; isolating security components from other components during execution; avoiding undocumented commands and settings; and providing features that will aid software acquirers with the secure deployment, operation, and maintenance of the software."
},
{
"exampleId": "Example 2",
"description": "Define policies that specify the security requirements for the organization’s software, and verify compliance at key points in the SDLC (e.g., classes of software flaws verified by gates, responses to vulnerabilities discovered in released software)."
},
{
"exampleId": "Example 3",
"description": "Analyze the risk of applicable technology stacks (e.g., languages, environments, deployment models), and recommend or require the use of stacks that will reduce risk compared to others."
},
{
"exampleId": "Example 4",
"description": "Define policies that specify what needs to be archived for each software release (e.g., code, package files, third-party libraries, documentation, data inventory) and how long it needs to be retained based on the SDLC model, software end-of-life, and other factors."
},
{
"exampleId": "Example 5",
"description": "Ensure that policies cover the entire software life cycle, including notifying users of the impending end of software support and the date of software end-of-life."
},
{
"exampleId": "Example 6",
"description": "Review all security requirements at least annually, or sooner if there are new requirements from internal or external sources, a major vulnerability is discovered in released software, or a major security incident targeting organization-developed software has occurred."
},
{
"exampleId": "Example 7",
"description": "Establish and follow processes for handling requirement exception requests, including periodic reviews of all approved exceptions."
}
],
"references": [
{
"referenceId": "BSAFSS",
"sections": [
"SC.1-1",
"SC.2",
"PD.1-1",
"PD.1-2",
"PD.1-3",
"PD.2-2",
"SI",
"PA",
"CS",
"AA",
"LO",
"EE"
]
},
{
"referenceId": "BSIMM",
"sections": [
"SM1.1",
"SM1.4",
"SM2.2",
"CP1.1",
"CP1.2",
"CP1.3",
"CP2.1",
"CP2.3",
"AM1.2",
"SFD1.1",
"SFD2.1",
"SFD3.2",
"SR1.1",
"SR1.3",
"SR2.2",
"SR3.3",
"SR3.4"
]
},
{
"referenceId": "EO14028",
"sections": [
"4e(ix)"
]
},
{
"referenceId": "IEC62443",
"sections": [
"SR-3",
"SR-4",
"SR-5",
"SD-4"
]
},
{
"referenceId": "ISO27034",
"sections": [
"7.3.2"
]
},
{
"referenceId": "MSSDL",
"sections": [
"2",
"5"
]
},
{
"referenceId": "NISTCSF",
"sections": [
"ID.GV-3"
]
},
{
"referenceId": "OWASPMASVS",
"sections": [
"1.12"
]
},
{
"referenceId": "OWASPSAMM",
"sections": [
"PC1-A",
"PC1-B",
"PC2-A",
"PC3-A",
"SR1-A",
"SR1-B",
"SR2-B",
"SA1-B",
"IR1-A"
]
},
{
"referenceId": "PCISSLC",
"sections": [
"2.1",
"2.2",
"2.3",
"3.3"
]
},
{
"referenceId": "SCFPSSD",
"sections": [
"Establish Coding Standards and Conventions"
]
},
{
"referenceId": "SP80053",
"sections": [
"SA-8",
"SA-8(3)",
"SA-15",
"SR-3"
]
},
{
"referenceId": "SP800160",
"sections": [
"3.1.2",
"3.2.1",
"3.3.1"
]
},
{
"referenceId": "SP800161",
"sections": [
"SA-8",
"SA-15",
"SR-3"
]
},
{
"referenceId": "SP800181",
"sections": [
"T0414",
"K0003",
"K0039",
"K0044",
"K0157",
"K0168",
"K0177",
"K0211",
"K0260",
"K0261",
"K0262",
"K0524",
"S0010",
"S0357",
"S0368",
"A0033",
"A0123",
"A0151"
]
}
]
},
{
"taskId": "PO.1.3",
"description": "Communicate requirements to all third parties who will provide commercial software components to the organization for reuse by the organization’s own software. [Formerly PW.3.1]",
"examples": [
{
"exampleId": "Example 1",
"description": "Define a core set of security requirements for software components, and include it in acquisition documents, software contracts, and other agreements with third parties."
},
{
"exampleId": "Example 2",
"description": "Define security-related criteria for selecting software; the criteria can include the third party’s vulnerability disclosure program and product security incident response capabilities or the third party’s adherence to organization-defined practices."
},
{
"exampleId": "Example 3",
"description": "Require third parties to attest that their software complies with the organization’s security requirements."
},
{
"exampleId": "Example 4",
"description": "Require third parties to provide provenance data and integrity verification mechanisms for all components of their software."
},
{
"exampleId": "Example 5",
"description": "Establish and follow processes to address risk when there are security requirements that third-party software components to be acquired do not meet; this should include periodic reviews of all approved exceptions to requirements."
}
],
"references": [
{
"referenceId": "BSAFSS",
"sections": [
"SM.1",
"SM.2",
"SM.2-1",
"SM.2-4"
]
},
{
"referenceId": "BSIMM",
"sections": [
"CP2.4",
"CP3.2",
"SR2.5",
"SR3.2"
]
},
{
"referenceId": "EO14028",
"sections": [
"4e(vi)",
"4e(ix)"
]
},
{
"referenceId": "IDASOAR",
"sections": [
"19",
"21"
]
},
{
"referenceId": "IEC62443",
"sections": [
"SM-9",
"SM-10"
]
},
{
"referenceId": "MSSDL",
"sections": [
"7"
]
},
{
"referenceId": "NISTCSF",
"sections": [
"ID.SC-3"
]
},
{
"referenceId": "OWASPSAMM",
"sections": [
"SR3-A"
]
},
{
"referenceId": "SCAGILE",
"sections": [
"Tasks Requiring the Help of Security Experts 8"
]
},
{
"referenceId": "SCFPSSD",
"sections": [
"Manage Security Risk Inherent in the Use of Third-Party Components"
]
},
{
"referenceId": "SCSIC",
"sections": [
"Vendor Sourcing Integrity Controls"
]
},
{
"referenceId": "SP80053",
"sections": [
"SA-4",
"SA-9",
"SA-10",
"SA-10(1)",
"SA-15",
"SR-3",
"SR-4",
"SR-5"
]
},
{
"referenceId": "SP800160",
"sections": [
"3.1.1",
"3.1.2"
]
},
{
"referenceId": "SP800161",
"sections": [
"SA-4",
"SA-9",
"SA-9(1)",
"SA-9(3)",
"SA-10",
"SA-10(1)",
"SA-15",
"SR-3",
"SR-4",
"SR-5"
]
},
{
"referenceId": "SP800181",
"sections": [
"T0203",
"T0415",
"K0039",
"S0374",
"A0056",
"A0161"
]
}
]
}
]
},
{
"practiceId": "PO.2",
"title": "Implement Roles and Responsibilities",
"description": "Ensure that everyone inside and outside of the organization involved in the SDLC is prepared to perform their SDLC-related roles and responsibilities throughout the SDLC.",
"tasks": [
{
"taskId": "PO.2.1",
"description": "Create new roles and alter responsibilities for existing roles as needed to encompass all parts of the SDLC. Periodically review and maintain the defined roles and responsibilities, updating them as needed.",
"examples": [
{
"exampleId": "Example 1",
"description": "Define SDLC-related roles and responsibilities for all members of the software development team."
},
{
"exampleId": "Example 2",
"description": "Integrate the security roles into the software development team."
},
{
"exampleId": "Example 3",
"description": "Define roles and responsibilities for cybersecurity staff, security champions, project managers and leads, senior management, software developers, software testers, software assurance leads and staff, product owners, operations and platform engineers, and others involved in the SDLC."
},
{
"exampleId": "Example 4",
"description": "Conduct an annual review of all roles and responsibilities."
},
{
"exampleId": "Example 5",
"description": "Educate affected individuals on impending changes to roles and responsibilities, and confirm that the individuals understand the changes and agree to follow them."
},
{
"exampleId": "Example 6",
"description": "Implement and use tools and processes to promote communication and engagement among individuals with SDLC-related roles and responsibilities, such as creating messaging channels for team discussions."
},
{
"exampleId": "Example 7",
"description": "Designate a group of individuals or a team as the code owner for each project."
}
],
"references": [
{
"referenceId": "BSAFSS",
"sections": [
"PD.2-1",
"PD.2-2"
]
},
{
"referenceId": "BSIMM",
"sections": [
"SM1.1",
"SM2.3",
"SM2.7",
"CR1.7"
]
},
{
"referenceId": "EO14028",
"sections": [
"4e(ix)"
]
},
{
"referenceId": "IEC62443",
"sections": [
"SM-2",
"SM-13"
]
},
{
"referenceId": "NISTCSF",
"sections": [
"ID.AM-6",
"ID.GV-2"
]
},
{
"referenceId": "PCISSLC",
"sections": [
"1.2"
]
},
{
"referenceId": "SCSIC",
"sections": [
"Vendor Software Development Integrity Controls"
]
},
{
"referenceId": "SP80053",
"sections": [
"SA-3"
]
},
{
"referenceId": "SP800160",
"sections": [
"3.2.1",
"3.2.4",
"3.3.1"
]
},
{
"referenceId": "SP800161",
"sections": [
"SA-3"
]
},
{
"referenceId": "SP800181",
"sections": [
"K0233"
]
}
]
},
{
"taskId": "PO.2.2",
"description": "Provide role-based training for all personnel with responsibilities that contribute to secure development. Periodically review personnel proficiency and role-based training, and update the training as needed.",
"examples": [
{
"exampleId": "Example 1",
"description": "Document the desired outcomes of training for each role."
},
{
"exampleId": "Example 2",
"description": "Define the type of training or curriculum required to achieve the desired outcome for each role."
},
{
"exampleId": "Example 3",
"description": "Create a training plan for each role."
},
{
"exampleId": "Example 4",
"description": "Acquire or create training for each role; acquired training may need to be customized for the organization."
},
{
"exampleId": "Example 5",
"description": "Measure outcome performance to identify areas where changes to training may be beneficial."
}
],
"references": [
{
"referenceId": "BSAFSS",
"sections": [
"PD.2-2"
]
},
{
"referenceId": "BSIMM",
"sections": [
"T1.1",
"T1.7",
"T1.8",
"T2.5",
"T2.8",
"T2.9",
"T3.1",
"T3.2",
"T3.4"
]
},
{
"referenceId": "EO14028",
"sections": [
"4e(ix)"
]
},
{
"referenceId": "IEC62443",
"sections": [
"SM-4"
]
},
{
"referenceId": "MSSDL",
"sections": [
"1"
]
},
{
"referenceId": "NISTCSF",
"sections": [
"PR.AT"
]
},
{
"referenceId": "OWASPSAMM",
"sections": [
"EG1-A",
"EG2-A"
]
},
{
"referenceId": "PCISSLC",
"sections": [
"1.3"
]
},
{
"referenceId": "SCAGILE",
"sections": [
"Operational Security Tasks 14",
"15",
"Tasks Requiring the Help of Security Experts 1"
]
},
{
"referenceId": "SCFPSSD",
"sections": [
"Planning the Implementation and Deployment of Secure Development Practices"
]
},
{
"referenceId": "SCSIC",
"sections": [
"Vendor Software Development Integrity Controls"
]
},
{
"referenceId": "SP80053",
"sections": [
"SA-8"
]
},
{
"referenceId": "SP800160",
"sections": [
"3.2.4",
"3.2.6"
]
},
{
"referenceId": "SP800161",
"sections": [
"SA-8"
]
},
{
"referenceId": "SP800181",
"sections": [
"OV-TEA-001",
"OV-TEA-002",
"T0030",
"T0073",
"T0320",
"K0204",
"K0208",
"K0220",
"K0226",
"K0243",
"K0245",
"K0252",
"S0100",
"S0101",
"A0004",
"A0057"
]
}
]
},
{
"taskId": "PO.2.3",
"description": "Obtain upper management or authorizing official commitment to secure development, and convey that commitment to all with development-related roles and responsibilities.",
"examples": [
{
"exampleId": "Example 1",
"description": "Appoint a single leader or leadership team to be responsible for the entire secure software development process, including being accountable for releasing software to production and delegating responsibilities as appropriate."
},
{
"exampleId": "Example 2",
"description": "Increase authorizing officials’ awareness of the risks of developing software without integrating security throughout the development life cycle and the risk mitigation provided by secure development practices."
},
{
"exampleId": "Example 3",
"description": "Assist upper management in incorporating secure development support into their communications with personnel with development-related roles and responsibilities."
},
{
"exampleId": "Example 4",
"description": "Educate all personnel with development-related roles and responsibilities on upper management’s commitment to secure development and the importance of secure development to the organization."
}
],
"references": [
{
"referenceId": "BSIMM",
"sections": [
"SM1.3",
"SM2.7",
"CP2.5"
]
},
{
"referenceId": "EO14028",
"sections": [
"4e(ix)"
]
},
{
"referenceId": "NISTCSF",
"sections": [
"ID.RM-1",
"ID.SC-1"
]
},
{
"referenceId": "OWASPSAMM",
"sections": [
"SM1.A"
]
},
{
"referenceId": "PCISSLC",
"sections": [
"1.1"
]
},
{
"referenceId": "SP800181",
"sections": [
"T0001",
"T0004"
]
}
]
}
]
},
{
"practiceId": "PO.3",
"title": "Implement Supporting Toolchains",
"description": "Use automation to reduce human effort and improve the accuracy, reproducibility, usability, and comprehensiveness of security practices throughout the SDLC, as well as provide a way to document and demonstrate the use of these practices. Toolchains and tools may be used at different levels of the organization, such as organization-wide or project-specific, and may address a particular part of the SDLC, like a build pipeline.",
"tasks": [
{
"taskId": "PO.3.1",
"description": "Specify which tools or tool types must or should be included in each toolchain to mitigate identified risks, as well as how the toolchain components are to be integrated with each other.",
"examples": [
{
"exampleId": "Example 1",
"description": "Define categories of toolchains, and specify the mandatory tools or tool types to be used for each category."
},
{
"exampleId": "Example 2",
"description": "Identify security tools to integrate into the developer toolchain."
},
{
"exampleId": "Example 3",
"description": "Define what information is to be passed between tools and what data formats are to be used."
},
{
"exampleId": "Example 4",
"description": "Evaluate tools’ signing capabilities to create immutable records/logs for auditability within the toolchain."
},
{
"exampleId": "Example 5",
"description": "Use automated technology for toolchain management and orchestration."
}
],
"references": [
{
"referenceId": "BSIMM",
"sections": [
"CR1.4",
"ST1.4",
"ST2.5",
"SE2.7"
]
},
{
"referenceId": "CNCFSSCP",
"sections": [
"Securing Materials—Verification",
"Securing Build Pipelines—Verification",
"Automation",
"Secure Authentication/Access",
"Securing Artefacts—Verification",
"Securing Deployments—Verification"
]
},
{
"referenceId": "EO14028",
"sections": [
"4e(iii)",
"4e(ix)"
]
},
{
"referenceId": "MSSDL",
"sections": [
"8"
]
},
{
"referenceId": "OWASPSAMM",
"sections": [
"IR2-B",
"ST2-B"
]
},
{
"referenceId": "SCAGILE",
"sections": [
"Tasks Requiring the Help of Security Experts 9"
]
},
{
"referenceId": "SCSIC",
"sections": [
"Vendor Software Delivery Integrity Controls"
]
},
{
"referenceId": "SP80053",
"sections": [
"SA-15"
]
},
{
"referenceId": "SP800161",
"sections": [
"SA-15"
]
},
{
"referenceId": "SP800181",
"sections": [
"K0013",
"K0178"
]
}
]
},
{
"taskId": "PO.3.2",
"description": "Follow recommended security practices to deploy, operate, and maintain tools and toolchains.",
"examples": [
{
"exampleId": "Example 1",
"description": "Evaluate, select, and acquire tools, and assess the security of each tool."
},
{
"exampleId": "Example 2",
"description": "Integrate tools with other tools and existing software development processes and workflows."
},
{
"exampleId": "Example 3",
"description": "Use code-based configuration for toolchains (e.g., pipelines-as-code, toolchains-as-code)."
},
{
"exampleId": "Example 4",
"description": "Implement the technologies and processes needed for reproducible builds."
},
{
"exampleId": "Example 5",
"description": "Update, upgrade, or replace tools as needed to address tool vulnerabilities or add new tool capabilities."
},
{
"exampleId": "Example 6",
"description": "Continuously monitor tools and tool logs for potential operational and security issues, including policy violations and anomalous behavior."
},
{
"exampleId": "Example 7",
"description": "Regularly verify the integrity and check the provenance of each tool to identify potential problems."
},
{
"exampleId": "Example 8",
"description": "See PW.6 regarding compiler, interpreter, and build tools."
},
{
"exampleId": "Example 9",
"description": "See PO.5 regarding implementing and maintaining secure environments."
}
],
"references": [
{
"referenceId": "BSAFSS",
"sections": [
"DE.2"
]
},
{
"referenceId": "BSIMM",
"sections": [
"SR1.1",
"SR1.3",
"SR3.4"
]
},
{
"referenceId": "CNCFSSCP",
"sections": [