-
Notifications
You must be signed in to change notification settings - Fork 1
/
cnswp-v2-controls.yaml
2235 lines (2235 loc) · 78.4 KB
/
cnswp-v2-controls.yaml
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
uuid: ed17a132-f24c-4812-8c7b-688d2421113b
metadata:
title: Cloud Native Security Controls Catalog
last_modified: "2024-05-10T17:16:14.472+00:00"
version: 0.0.1
oscal_version: 1.0.4
controls:
- id: control-195
class_: CNSWP-v2.0
title: Secrets are injected at runtime, such as environment variables or as a file
props:
- name: section
value: Access
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: refs
value: IA-5(7) Authenticator Management | No Embedded Unencrypted Static Authenticators
- name: x-note
value: Need to consider key rotation requirements in id:control-197
- id: control-196
class_: CNSWP-v2.0
title: Applications and workloads are explicitly authorized to communicate with each other using mutual authentication
props:
- name: section
value: Access
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: refs
value: IA-9 Service Identification and Authentication
- name: zta-tenet
value: 2 - All communication is secured regardless of network location
- name: zta-tenet
value: 3 - Access to individual enterprise resources is granted on a per-session basis
- id: control-197
class_: CNSWP-v2.0
title: Keys are rotated frequently
props:
- name: section
value: Access
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: refs
value: SC-12 Cryptographic Key Establishment and Management
- name: zta-tenet
value: 2 - All communication is secured regardless of network location
- name: zta-tenet
value: 4 - Access to resources is determined by dynamic policy ...
- id: control-198
class_: CNSWP-v2.0
title: Key lifespan is short
props:
- name: section
value: Access
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: refs
value: SC-12(3) Cryptographic Key Establishment and Management | Asymetric Key
- name: zta-tenet
value: 4 - Access to resources is determined by dynamic policy ...
- id: control-199
class_: CNSWP-v2.0
title: Credentials and keys protecting sensitive workloads (health/finance/etc) are customer managed (e.g. generated and managed independent of a cloud service provider)
props:
- name: section
value: Access
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: description
value: KMS and HMS are common technologies to achieve this. FIPS 140-2 compliance is strongly suggested. Cloud KMS tends to be FIPS 140-2 Level 2 or greater.
- name: refs
value: IA-2(12) Identification and Authentication (Organizational Users) | Acceptance of PIV Credentials
- name: zta-tenet
value: 6 - All resource auth and authz are dynamic and strictly enforced before access is allowed
- id: control-200
class_: CNSWP-v2.0
title: Authentication and authorization are determined independently
props:
- name: section
value: Access
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: refs
value: IA-2(6) Identification and Authentication (Organizational Users) | Access to Accounts - Separate Devices
- name: zta-tenet
value: 6 - All resource auth and authz are dynamic and strictly enforced before access is allowed
- id: control-201
class_: CNSWP-v2.0
title: Authentication and authorization are enforced independently
props:
- name: section
value: Access
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: refs
value: IA-2(6) Identification and Authentication (Organizational Users) | Access to Accounts - Separate Devices
- name: zta-tenet
value: 6 - All resource auth and authz are dynamic and strictly enforced before access is allowed
- id: control-202
class_: CNSWP-v2.0
title: Access control and file permissions are updated in real-time
props:
- name: section
value: Access
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: description
value: where possible as caching may permit unauthorized access
- name: refs
value: SI-4(2) System Monitoring | Automated Tools and Mechanisms for Real-Time Analysis
- name: zta-tenet
value: 4 - Access to resources is determined by dynamic policy ...
- name: zta-tenet
value: 6 - All resource auth and authz are dynamic and strictly enforced before access is allowed
- id: control-203
class_: CNSWP-v2.0
title: Authorization for workloads is granted based on attributes and roles/permissions previously assigned
props:
- name: section
value: Access
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: refs
value: AC-3(13) Access Enforcement | Attribute-Based Access Control
- name: zta-tenet
value: 6 - All resource auth and authz are dynamic and strictly enforced before access is allowed
- id: control-204
class_: CNSWP-v2.0
title: ABAC and RBAC are used
props:
- name: section
value: Access
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: refs
value: AC-3(13) Access Enforcement | Attribute-Based Access Control, AC-3(7) Access Enforcement | Role-Based Access Control
- name: zta-tenet
value: 6 - All resource auth and authz are dynamic and strictly enforced before access is allowed
- id: control-205
class_: CNSWP-v2.0
title: End user identity is capable of being accepted, consumed, and forwarded on for contextual or dynamic authorization
props:
- name: section
value: Access
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: description
value: This can be achieved through the use of identity documents and tokens.
- name: refs
value: SC-7(19) Boundary Protection | Block Communication from Non-Organizationally Configured Hosts
- name: zta-tenet
value: 4 - Access to resources is determined by dynamic policy ...
- id: control-206
class_: CNSWP-v2.0
title: All cluster and workloads operators are authenticated
props:
- name: section
value: Access
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: refs
value: IA-7 Cryptographic Module Authentication
- name: zta-tenet
value: 1 - All data sources and computing services are considered resources
- name: zta-tenet
value: 4 - Access to resources is determined by dynamic policy ...
- id: control-207
class_: CNSWP-v2.0
title: cluster and worklods operate actions are evaluated against access control policies governing context, purpose, and output
props:
- name: section
value: Access
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: refs
value: IA-7 Cryptographic Module Authentication
- name: zta-tenet
value: 1 - All data sources and computing services are considered resources
- name: zta-tenet
value: 4 - Access to resources is determined by dynamic policy ...
- id: control-208
class_: CNSWP-v2.0
title: Identity federation uses multi-factor authentication for human users
props:
- name: section
value: Access
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: refs
value: IA-2(1)(2) Identification and Authentication (organizational Users) | Multi-Factor Authenticaiton to Priviledged & Non Priveledged Accounts
- name: zta-tenet
value: 6 - All resource auth and authz are dynamic and strictly enforced before access is allowed
- id: control-209
class_: CNSWP-v2.0
title: HSMs are used to physically protect cryptographic secrets with an encryption key residing in the HSM
props:
- name: section
value: Access
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: description
value: If this is not possible, software-based credential managers should be used.
- name: refs
value: AC-4(4) Information Flow Enforcement | Flow Control of Encrypted Information, SC-3(1) Security Function Isolation | Hardware Separation
- name: x-query
value: Is there a relevant zero trust tenet to link with HSM secret storage
- name: x-note
value: cryptographic secret storage
- id: control-210
class_: CNSWP-v2.0
title: Secrets should have a short expiration period or time to live
props:
- name: section
value: Access
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: description
value: Leverage tool-specific capabilities of secret manager
- name: refs
value: SI-12 Information Management and Retention
- name: x-note
value: Not directly related to tenets of zero trust
- id: control-211
class_: CNSWP-v2.0
title: Time to live and expiration period on secrets is verfied to prevent reuse
props:
- name: section
value: Access
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: description
value: Leverage tool-specific capabilities of secret manager
- name: refs
value: AC-16(3) Security and Privacy Attributes | Maintenance of Attribute Associations by System
- name: x-note
value: Not directly related to tenets of zero trust
- id: control-212
class_: CNSWP-v2.0
title: Secrets management systems are highly available
props:
- name: section
value: Access
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: refs
value: SC-12(1) Cryptographic Key Establishment and Management | Availability
- name: x-note
value: Not directly related to tenets of zero trust
- id: control-213
class_: CNSWP-v2.0
title: Long-lived secrets adhere to periodic rotation and revocation
props:
- name: section
value: Access
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: description
value: Long-lived secrets are not recommended, but some capabilities require them
- name: refs
value: SI-12 Information Management and Retention
- name: x-note
value: Not directly related to tenets of zero trust
- id: control-214
class_: CNSWP-v2.0
title: Secrets are distributed through secured communication channels protected commensurate with the level of access or data they are protecting
props:
- name: section
value: Access
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: refs
value: AC-16 Security and Privacy Atributes
- name: zta-tenet
value: 2 - All communication is secured regardless of network location
- id: control-215
class_: CNSWP-v2.0
title: Secrets injected are runtime are masqued or dropped from logs, audit, or system dumps
props:
- name: section
value: Access
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: description
value: Even short lived secrets may be resused if caught in time by an interested attacker. Logs, audit, and systems dumps (i.e. in-memory shared volumes instead of environment variables) are all areas where runtime injected secrets show up
- name: refs
value: AU-9(3) Protection of Audit Information | Cryptographic Protection
- name: x-note
value: Not directly related to tenets of zero trust
- id: control-216
class_: CNSWP-v2.0
title: Bootstrapping is employed to verify correct physical and logical location of compute
props:
- name: section
value: Compute
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: description
value: Secure Boot with TPM 2.0 or similar control
- name: refs
value: SI-7(9) Software, Firmware, and Information Integrity | Verify Boot Process
- name: zta-tenet
value: 4 - Access to resources is determined by dynamic policy ...
- id: control-217
class_: CNSWP-v2.0
title: Disparate data sensitive workloads are not run on the same host OS kernel
props:
- name: section
value: Compute
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: description
value: 'There are at least three implementing controls possible: workloads may be separated by running in a separate cluster, on a separate node, or by implementing pods in independent VMs. It is also possible to emulate the kernel via an application kernel (e.g. gvisor)'
- name: refs
value: SC-7 Boundary Protection
- name: x-note
value: resource isolation is not explicitly mentioned in tenets of zero trust
- id: control-218
class_: CNSWP-v2.0
title: Monitor and detect any changes to the initial configurations made in runtime
props:
- name: section
value: Compute
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: description
value: Preventative controls should be the primary control. Detective controls monitoring filesystem changes should be used to verify primary controls are operating properly.
- name: refs
value: CM-2(2) Baseline Configuration | Automation Support for Accuracy and Currency CM-3(7) Configuration Change Control | Review System Changes
- name: zta-tenet
value: 5 - The enterprise monitors and measures integrity / security posture ...
- id: control-219
class_: CNSWP-v2.0
title: API auditing is enabled with a filter for a specific set of API Groups or verbs
props:
- name: section
value: Compute
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: description
value: API audits of the application, kubernetes API server, and kernel should be implemented.
- name: refs
value: AU-2 Event Logging
- name: zta-tenet
value: 5 - The enterprise monitors and measures integrity / security posture ...
- id: control-220
class_: CNSWP-v2.0
title: Container specific operating systems are in use
props:
- name: section
value: Compute
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: description
value: a read-only OS with other services disabled. This provides isolation and resource confinement that enables developers to run isolated applications on a shared host kernel
- name: refs
value: CM-2 Baseline Configuration CM-7 Least Functionality
- name: x-note
value: resource isolation
- id: control-221
class_: CNSWP-v2.0
title: The hardware root of trust is based in a Trusted Platform Module (TPM) or virtual TPM (vTPM)
props:
- name: section
value: Compute
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: description
value: Ensure HW root of trust extends to the host OS kernel, modules, system images, container runtimes, and all software on the system.
- name: refs
value: SI-7 Software, Firmware, and Information Integrity
- name: zta-tenet
value: 4 - Access to resources is determined by dynamic policy ...
- name: zta-tenet
value: 6 - All resource auth and authz are dynamic and strictly enforced before access is allowed
- id: control-222
class_: CNSWP-v2.0
title: Minimize administrative access to the control plane
props:
- name: section
value: Compute
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: description
value: Enure both users and pods have the minimum necessary access
- name: refs
value: AC-6 Least Privilege
- name: zta-tenet
value: 6 - All resource auth and authz are dynamic and strictly enforced before access is allowed
- name: zta-tenet
value: 4 - Access to resources is determined by dynamic policy ...
- id: control-223
class_: CNSWP-v2.0
title: Object level and resource requests and limits are controlled through cgroups
props:
- name: section
value: Compute
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: description
value: helps prevent exhaustion of node and cluster level resources by one misbehaving workload due to an intentional (e.g., fork bomb attack or cryptocurrency mining) or unintentional (e.g., reading a large file in memory without input validation, horizontal autoscaling to exhaust compute resources) issue
- name: refs
value: SI-7(16) Software, Firmware, and Information Integrity | Time Limit on Process Execution Without Supervision, SI-7(17) Software, Firmware, and Information Integrity | Runtime Application Self-protection
- name: zta-tenet
value: 4 - Access to resources is determined by dynamic policy ...
- id: control-224
class_: CNSWP-v2.0
title: Systems processing alerts are periodically tuned for false positives
props:
- name: section
value: Compute
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: description
value: to avoid alert flooding, fatigue, and false negatives after security incidents that were not detected by the system
- name: refs
value: SI-4(13) System Monitoring | Analyze Traffic and Event Patterns
- name: zta-tenet
value: 7 - The enterprise collects as much info as possible .. to improve security posture
- id: control-225
class_: CNSWP-v2.0
title: All orchestrator control plane components are configured to communicate via mutual authentication and certificate validation with a periodically rotated certificate
props:
- name: section
value: Compute
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: description
value: In unfederated clusters, the CA should be used exclusively for the current cluster.
- name: refs
value: AC-3 Access Enforcement
- name: zta-tenet
value: 2 - All communication is secured regardless of network location
- name: zta-tenet
value: 3 - Access to individual enterprise resources is granted on a per-session basis
- id: control-226
class_: CNSWP-v2.0
title: Only sanctioned capabilities and system calls (e.g. seccomp filters), are allowed to execute or be invoked in a container by the host operating system
props:
- name: section
value: Compute
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: description
value: Additional tooling should be installed that go beyond k8s capabilities to limit system calls. E.g. Falco.
- name: refs
value: CM-2 Baseline Configuration CM-7 Least Functionality
- name: x-note
value: resource isolation
- id: control-227
class_: CNSWP-v2.0
title: Changes to critical mount points and files are prevented, monitored, and alerted
props:
- name: section
value: Compute
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: refs
value: CM-5 Access Restrictions for Change
- name: x-note
value: resource isolation
- id: control-228
class_: CNSWP-v2.0
title: Runtime configuration control prevents changes to binaries, certificates, and remote access configurations
props:
- name: section
value: Compute
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: refs
value: CM-5 Access Restrictions for Change
- name: x-note
value: resource isolation
- id: control-229
class_: CNSWP-v2.0
title: Runtime configuration prevents ingress and egress network access for containers to only what is required to operate
props:
- name: section
value: Compute
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: refs
value: SC-7 Boundary Protection
- name: zta-tenet
value: 4 - Access to resources is determined by dynamic policy ...
- id: control-230
class_: CNSWP-v2.0
title: Policies are defined that restrict communications to only occur between sanctioned microservice pairs
props:
- name: section
value: Compute
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: refs
value: SC-7 Boundary Protection
- name: zta-tenet
value: 4 - Access to resources is determined by dynamic policy ...
- name: zta-tenet
value: 6 - All resource auth and authz are dynamic and strictly enforced before access is allowed
- id: control-231
class_: CNSWP-v2.0
title: Use a policy agent to control and enforce authorized, signed container images
props:
- name: section
value: Compute
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: refs
value: CM-5 Access Restrictions for Change
- name: zta-tenet
value: 4 - Access to resources is determined by dynamic policy ...
- id: control-232
class_: CNSWP-v2.0
title: Use a policy agent to control provenance assurance for operational workloads
props:
- name: section
value: Compute
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: refs
value: CM-5 Access Restrictions for Change
- name: x-note
value: identity attestation
- id: control-233
class_: CNSWP-v2.0
title: Use a service mesh that eliminates implicit trust through data-in-motion protection (i.e. confidentiality, integrity, authentication, authorization)
props:
- name: section
value: Compute
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: refs
value: SC-7 Boundary Protection
- name: zta-tenet
value: 6 - All resource auth and authz are dynamic and strictly enforced before access is allowed
- id: control-234
class_: CNSWP-v2.0
title: Use components that detect, track, aggregate and report system calls and network traffic from a container
props:
- name: section
value: Compute
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: description
value: should be leveraged to look for unexpected or malicious behavior
- name: refs
value: SI-4 System Monitoring
- name: zta-tenet
value: 7 - The enterprise collects as much info as possible .. to improve security posture
- id: control-235
class_: CNSWP-v2.0
title: Workloads should be dynamically scanned to detect malicious or insidious behavior for which no known occurrence yet exists
props:
- name: section
value: Compute
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: description
value: Events such as an extended sleep command that executes data exfiltration from etcd after the workload has been running for X amount of days are not expected in the majority of environments and therefore are not included in security tests. The aspect that workloads can have time or event delayed trojan horses is only detectable by comparing to baseline expected behavior, often discovered during thorough activity and scan monitoring
- name: refs
value: SI-3 Malicious Code Protection
- name: zta-tenet
value: 7 - The enterprise collects as much info as possible .. to improve security posture
- id: control-236
class_: CNSWP-v2.0
title: Environments are continuously scanned to detect new vulnerabilities in workloads
props:
- name: section
value: Compute
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: description
value: Vulnerabilities are constantly being discovered, just because it wasnt vulnerable at deploy, doesn't mean it won't be vulnerable in two weeks
- name: refs
value: RA-5 Vulnerability Monitoring and Scanning
- name: zta-tenet
value: 5 - The enterprise monitors and measures integrity / security posture ...
- id: control-237
class_: CNSWP-v2.0
title: Actionable audit events are generated that correlate/contextualize data from logs into "information" that can drive decision trees/incident response
props:
- name: section
value: Compute
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: refs
value: AU-3 Content of Audit Records
- name: zta-tenet
value: 7 - The enterprise collects as much info as possible .. to improve security posture
- id: control-238
class_: CNSWP-v2.0
title: Segregation of duties and the principle of least privilege is enforced
props:
- name: section
value: Compute
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: refs
value: AC-6 Least Privilege
- name: x-note
value: resource isolation
- id: control-239
class_: CNSWP-v2.0
title: Non-compliant violations are detected based on a pre-configured set of rules defined by the organization's policies
props:
- name: section
value: Compute
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: refs
value: SI-7 Software, Firmware, and Information Integrity
- name: zta-tenet
value: 5 - The enterprise monitors and measures integrity / security posture ...
- id: control-240
class_: CNSWP-v2.0
title: Native secret stores encrypt with keys from an external Key Management Store (KMS)
props:
- name: section
value: Compute
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: refs
value: SC-12(3) Systems & Communication Protection
- name: x-query
value: relationship to zero trust?
- id: control-241
class_: CNSWP-v2.0
title: Native secret stores are not configured for base64 encoding or stored in clear-text in the key-value store by default
props:
- name: section
value: Compute
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: description
value: Encoding is not encryption
- name: refs
value: SC-12(3) Systems & Communication Protection
- name: x-query
value: relationship to zero trust?
- id: control-242
class_: CNSWP-v2.0
title: Network traffic to malicious domains is detected and denied
props:
- name: section
value: Compute
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: refs
value: SI-4 System Monitoring
- name: zta-tenet
value: 4 - Access to resources is determined by dynamic policy ...
- id: control-243
class_: CNSWP-v2.0
title: Use encrypted containers for sensitive sources, methods, and data
props:
- name: section
value: Compute
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: refs
value: SC-28 Protection of Information at Rest
- name: x-note
value: resource isolation
- id: control-244
class_: CNSWP-v2.0
title: Use SBOMs to identify current deployments of vulnerable libraries, dependencies, and packages
props:
- name: section
value: Compute
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: refs
value: CM-8 System Component Inventory
- name: zta-tenet
value: 7 - The enterprise collects as much info as possible .. to improve security posture
- id: control-245
class_: CNSWP-v2.0
title: Processes must execute only functions explicitly defined in an allow list
props:
- name: section
value: Compute
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: refs
value: CM-2 Baseline Configuration CM-7 Least Functionality
- name: zta-tenet
value: 4 - Access to resources is determined by dynamic policy ...
- id: control-246
class_: CNSWP-v2.0
title: Functions are not be allowed to make changes to critical file system mount points
props:
- name: section
value: Compute
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: refs
value: CM-5 Access Restrictions for Change
- name: x-note
value: resource isolation
- id: control-247
class_: CNSWP-v2.0
title: Function access is only permitted to sanctioned services
props:
- name: section
value: Compute
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: description
value: Either through networking restrictions or least privilege in permission models
- name: refs
value: CM-2 Baseline Configuration CM-7 Least Functionality
- name: zta-tenet
value: 3 - Access to individual enterprise resources is granted on a per-session basis
- name: zta-tenet
value: 4 - Access to resources is determined by dynamic policy ...
- name: zta-tenet
value: 6 - All resource auth and authz are dynamic and strictly enforced before access is allowed
- id: control-248
class_: CNSWP-v2.0
title: Egress network connection is monitored to detect and prevent access to C&C (command and control) and other malicious network domains
props:
- name: section
value: Compute
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: refs
value: SI-4 System Monitoring
- name: zta-tenet
value: 2 - All communication is secured regardless of network location
- id: control-249
class_: CNSWP-v2.0
title: Ingress network inspection is employed detect and remove malicious payloads and commands
props:
- name: section
value: Compute
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: description
value: For instance, SQL injection attacks can be detected using inspection.
- name: refs
value: SI-4 System Monitoring
- name: zta-tenet
value: 2 - All communication is secured regardless of network location
- id: control-250
class_: CNSWP-v2.0
title: Serverless functions are run in tenant-based resource or performance isolation for similar data classifications
props:
- name: section
value: Compute
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: description
value: This may impact the performance due to limitations in the address space available to the isolation environment and should be considered for only the most sensitive workloads.
- name: refs
value: SC-7(21) Boundary Protection | Isolation of System Components
- name: x-note
value: resource isolation
- id: control-251
class_: CNSWP-v2.0
title: Trust confirmation verifies the image has a valid signature from an authorized source
props:
- name: section
value: Deploy
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: refs
value: SR-4 (3) PROVENANCE | VALIDATE AS GENUINE AND NOT ALTERED, SR-4 (4) PROVENANCE | SUPPLY CHAIN INTEGRITY — PEDIGREE
- name: x-query
value: relationship to zero trust?
- id: control-252
class_: CNSWP-v2.0
title: Image runtime policies are enforced prior to deployment
props:
- name: section
value: Deploy
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: refs
value: SI-7 (17) SOFTWARE, FIRMWARE, AND INFORMATION INTEGRITY | RUNTIME APPLICATION SELF-PROTECTION
- name: x-query
value: relationship to zero trust?
- id: control-253
class_: CNSWP-v2.0
title: Image integrity and signature are verified prior to deployment
props:
- name: section
value: Deploy
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: refs
value: SR-4 (3) PROVENANCE | VALIDATE AS GENUINE AND NOT ALTERED, SR-4 (4) PROVENANCE | SUPPLY CHAIN INTEGRITY — PEDIGREE
- name: x-query
value: relationship to zero trust?
- id: control-254
class_: CNSWP-v2.0
title: Applications provide logs regarding authentication, authorization, actions, and failures
props:
- name: section
value: Deploy
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: refs
value: CM-3 CONFIGURATION CHANGE CONTROL
- name: zta-tenet
value: 7 - The enterprise collects as much info as possible .. to improve security posture
- id: control-255
class_: CNSWP-v2.0
title: Forensics capabilities are integrated into an incident response plan and procedures
props:
- name: section
value: Deploy
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: refs
value: INCIDENT HANDLING | MALICIOUS CODE AND FORENSIC ANALYSIS
- name: zta-tenet
value: 7 - The enterprise collects as much info as possible .. to improve security posture
- id: control-256
class_: CNSWP-v2.0
title: AI, ML, or statistical modeling are used for behavioural and heuristic environment analysis to detect unwanted activities
props:
- name: section
value: Deploy
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: refs
value: SI-3 SYSTEM AND INFORMATION INTEGRITY
- name: zta-tenet
value: 7 - The enterprise collects as much info as possible .. to improve security posture
- id: control-257
class_: CNSWP-v2.0
title: Establish a dedicated Production environment
props:
- name: section
value: Develop
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: description
value: Ensure that production workloads are in a separate, dedicated environment from non-production workloads. In the context of containers, this can mean separate clusters. In the case of VMs, separate networks.
- name: refs
value: SA-3(1) SYSTEM DEVELOPMENT LIFE CYCLE | MANAGE PREPRODUCTION ENVIRONMENT
- name: x-query
value: relationship to zero trust?
- id: control-258
class_: CNSWP-v2.0
title: Leverage Dynamic deployments
props:
- name: section
value: Develop
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: description
value: Blue/Green, Alpha/Beta, Canary, red-black deployments
- name: refs
value: SA-8(31) SECURITY AND PRIVACY ENGINEERING PRINCIPLES | SECURE SYSTEM MODIFICATION
- name: x-query
value: relationship to zero trust?
- id: control-259
class_: CNSWP-v2.0
title: Integrate vulnerability and configuration scanning in both the IDE and at the CI system during pull request
props:
- name: section
value: Develop
- name: assurance-level
value: N/A
- name: risk-categories
value: N/A
- name: refs
value: SA-11(1) DEVELOPER TESTING AND EVALUATION | STATIC CODE ANALYSIS
- name: zta-tenet
value: 7 - The enterprise collects as much info as possible .. to improve security posture
- id: control-260
class_: CNSWP-v2.0
title: Establish dedicated development, testing, and production environment