-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathiso27001.json
2006 lines (2006 loc) · 115 KB
/
iso27001.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
{
"standard": "ISO/IEC 27001:2022",
"version": "2022",
"domains": [
{
"title": "4 - Context of the organization",
"controls": [
{
"ref": "4.1",
"title": "Understanding the organization and its context",
"summary": "The organization shall determine external and internal issues that are relevant to its purpose and that affect its ability to achieve the intended outcome(s) of its information security management system.",
"mappedControls": [
"cp-compliance-mgmt",
"cp-ism-scope"
]
},
{
"ref": "4.2.a",
"title": "Understanding the needs and expectations of interested parties, part a)",
"summary": "The organization shall determine: a) interested parties that are relevant to the information security management system.",
"mappedControls": [
"cp-compliance-mgmt"
]
},
{
"ref": "4.2.b",
"title": "Understanding the needs and expectations of interested parties, part b)",
"summary": "The organization shall determine: b) the relevant requirements of these interested parties. Note: the requirements of interested parties include legal and regulatory requirements and contractual obligations.",
"mappedControls": [
"cp-compliance-mgmt"
]
},
{
"ref": "4.2.c",
"title": "Understanding the needs and expectations of interested parties, part c)",
"summary": "The organization shall determine: c) which of these requirements will be addressed through the information security managment system",
"mappedControls": [
"cp-ism-scope",
"cp-ism-policies"
]
},
{
"ref": "4.3.a",
"title": "Determining the scope of the information security management system, part a)",
"summary": "The organization shall determine the boundaries and applicability of the information system management system to establish its scope. When determining this scope, the organization shall consider: the external and internal issues referred to in 4.1 The scope shall be available as documented information.",
"mappedControls": [
"cp-ism-scope",
"cp-model-architecture",
"cp-vendor-contracts",
"cp-audit-customers",
"cp-compliance-mgmt"
]
},
{
"ref": "4.3.b",
"title": "Determining the scope of the information security management system, part b)",
"summary": "The organization shall determine the boundaries and applicability of the information system management system to establish its scope. When determining this scope, the organization shall consider: the requirements referred to in 4.2. The scope shall be available as documented information.",
"mappedControls": [
"cp-ism-scope",
"cp-audit-customers",
"cp-compliance-mgmt"
]
},
{
"ref": "4.3.c",
"title": "Determining the scope of the information security management system, part c)",
"summary": "The organization shall determine the boundaries and applicability of the information system management system to establish its scope. When determining this scope, the organization shall consider: interfaces and dependencies between activities performed by the organization, and those that are performed by other organizations. The scope shall be available as documented information.",
"mappedControls": [
"cp-ism-scope",
"cp-vendor-contracts",
"cp-vendor-vtr",
"cp-vendor-ssa"
]
},
{
"ref": "4.4",
"title": "Information security management system",
"summary": "The organization shall establish, implement, maintain, and continually improve an information security management system, including the processes needed and thier interactions, in accordance with the requirements of this International Standard.",
"mappedControls": [
"cp-ism-scope",
"cp-ism-policies",
"cp-ism-reporting"
]
}
]
},
{
"title": "5 - Leadership",
"controls": [
{
"ref": "5.1.a",
"title": "Leadership and Commitment, part a)",
"summary": "Top management shall demonstrate leadership and commitment with respect to the information security management system by:ensuring the information security policy and the information security objectives are established and compatible with the strategic direction of the organization.",
"mappedControls": [
"cp-ism-policies",
"cp-policy-mgmt"
]
},
{
"ref": "5.1.b",
"title": "Leadership and commitment, part b)",
"summary": "Top management shall demonstrate leadership and commitment with respect to the information security management system by: ensuring the integration of the information security management system requirements into the organization's processes.",
"mappedControls": [
"cp-ism-policies",
"cp-policy-mgmt",
"cp-ism-scope",
"cp-sanctions",
"cp-role-assignment"
]
},
{
"ref": "5.1.c",
"title": "Leadership and commitment, part c)",
"summary": "Top management shall demonstrate leadership and commitment with respect to the information security management system by: ensuring that the resources needed for the information security management system are available.",
"mappedControls": [
"cp-role-assignment",
"cp-audit-review"
]
},
{
"ref": "5.1.d",
"title": "Leadership and commitment, part d)",
"summary": "Top management shall demonstrate leadership and commitment with respect to the information security management system by: communicating the importance of effective information security management and of conforming to the information security management system requirements.",
"mappedControls": [
"cp-training-policy",
"cp-training-awareness",
"cp-sanctions",
"ref-employee-handbook",
"cp-employee-recognition",
"cp-employee-onboarding",
"cp-employee-acceptable-use"
]
},
{
"ref": "5.1.e",
"title": "Leadership and commitment, part e)",
"summary": "Top management shall demonstrate leadership and commitment with respect to the information security management system by: ensuring that the information security management system achieves its intended outcome(s).",
"mappedControls": [
"cp-compliance-requests",
"cp-audit-types",
"cp-audit-internal",
"cp-audit-review",
"cp-compliance-mgmt",
"cp-model-metrics"
]
},
{
"ref": "5.1.f",
"title": "Leadership and commitment, part f)",
"summary": "Top management shall demonstrate leadership and commitment with respect to the information security management system by: directing and supporting persons to contribute to the effectiveness of the information security management system.",
"mappedControls": [
"cp-role-assignment",
"cp-employee-recognition",
"cp-employee-whistleblower",
"cp-employee-escalation",
"cp-employee-development"
]
},
{
"ref": "5.1.g",
"title": "Leadership and commitment, part g)",
"summary": "Top management shall demonstrate leadership and commitment with respect to the information security management system by: promoting continual improvement.",
"mappedControls": [
"cp-model-metrics",
"cp-model-quality",
"cp-model-metrics",
"cp-employee-development"
]
},
{
"ref": "5.1.h",
"title": "Leadership and commitment, part h)",
"summary": "Top management shall demonstrate leadership and commitment with respect to the information security management system by: supporting other relevant management roles to demonstrate their leadership as it applies to their area of responsibility.",
"mappedControls": [
"cp-role-assignment",
"cp-employee-recognition",
"cp-employee-development"
]
},
{
"ref": "5.2.a",
"title": "Policy, part a)",
"summary": "Top management shall establish an information security policy that: is appropriate to the purpose of the organization.",
"mappedControls": [
"cp-ism-policies"
]
},
{
"ref": "5.2.b",
"title": "Policy, part b)",
"summary": "Top management shall establish an information security policy that: includes information security objectives (see 6.2) or provides the framework for setting information security objectives.",
"mappedControls": [
"cp-policy-framework",
"cp-model-metrics"
]
},
{
"ref": "5.2.c",
"title": "Policy, part c)",
"summary": "Top management shall establish an information security policy that: includes a commitment to satisfy applicable requirements related to information security.",
"mappedControls": [
"cp-compliance-mgmt",
"cp-compliance-monitor",
"cp-policy-framework"
]
},
{
"ref": "5.2.d",
"title": "Policy, part d)",
"summary": "Top management shall establish an information security policy that: includes a commitment to continual improvement of the information security management system.",
"mappedControls": [
"cp-model-metrics",
"cp-model-quality",
"cp-ism-reporting"
]
},
{
"ref": "5.2.e",
"title": "Policy, part e)",
"summary": "The information security policy shall: be available as documented information.",
"mappedControls": [
"cp-ism-policies"
]
},
{
"ref": "5.2.f",
"title": "Policy, part f)",
"summary": "The information security policy shall: be communicated within the organization.",
"mappedControls": [
"cp-ism-policies",
"cp-employee-onboarding",
"cp-employee-acceptable-use",
"cp-training-awareness"
]
},
{
"ref": "5.2.g",
"title": "Policy, part g)",
"summary": "The information security policy shall: be available to interested parties, as appropriate.",
"mappedControls": [
"ref-privacy-policy",
"ref-employee-handbook",
"cp-ism-policies",
"cp-audit-customers"
]
},
{
"ref": "5.3.a",
"title": "Organizatonal roles, responsibilities, and authorities, part a)",
"summary": "Top management shall ensure that the responsibilities and authorities for roles relevant to information security are assigned and communicated. Top management shall assign the responsibility and authority for: ensuring that the information security management system conforms to the requirements of this document. Note: Top management can also assign responsibilities and authorities for reporting performance of the information security management system within the organization.",
"mappedControls": [
"cp-role-assignment"
]
},
{
"ref": "5.3.b",
"title": "Organizatonal roles, responsibilities, and authorities, part b)",
"summary": "Top management shall ensure that the responsibilities and authorities for roles relevant to information security are assigned and communicated. Top management shall assign the responsibility and authority for: reporting on the performance of the information security management system to top management. Note: Top management can also assign responsibilities and authorities for reporting performance of the information security management system within the organization.",
"mappedControls": [
"cp-role-assignment",
"cp-model-metrics",
"cp-model-quality",
"cp-compliance-monitor"
]
}
]
},
{
"title": "6 - Planning",
"controls": [
{
"ref": "6.1.1.a",
"title": "General planning, part a)",
"summary": "When planning for the information security management system, the organization shall consider the issues referred to in 4.1 and the requirements referred to in 4.2 and determine the risks and opportunities that need to be addressed to: ensure the information security management system can achieve its intended outcome(s).",
"mappedControls": [
"cp-bcdr",
"cp-model-metrics",
"cp-model-architecture",
"cp-ism-scope"
]
},
{
"ref": "6.1.1.b",
"title": "General planning, part b)",
"summary": "When planning for the information security management system, the organization shall consider the issues referred to in 4.1 and the requirements referred to in 4.2 and determine the risks and opportunities that need to be addressed to: prevent, or reduce, undesired effects.",
"mappedControls": [
"cp-model-architecture",
"cp-risk-assess",
"cp-risk-fraud",
"cp-risk-mgmt-objectives"
]
},
{
"ref": "6.1.1.c",
"title": "General planning, part c)",
"summary": "When planning for the information security management system, the organization shall consider the issues referred to in 4.1 and the requirements referred to in 4.2 and determine the risks and opportunities that need to be addressed to: achieve continual improvement.",
"mappedControls": [
"cp-model-metrics",
"cp-model-quality",
"cp-risk-mgmt-objectives"
]
},
{
"ref": "6.1.1.d",
"title": "General planning, part d)",
"summary": "The organization shall plan: actions to address these risks and opportunities.",
"mappedControls": [
"cp-risk-mgmt",
"cp-risk-mitigation",
"cp-risk-insurance"
]
},
{
"ref": "6.1.1.e",
"title": "General planning, part e)",
"summary": "The organization shall plan: how to 1) integrate and implement the actions into its information security management system; and 2) evaluate the effectiveness of these actions.",
"mappedControls": [
"cp-compliance-monitor",
"cp-sdlc-monitor",
"cp-ccm-monitor",
"cp-vendor-monitor",
"cp-model-metrics"
]
},
{
"ref": "6.1.2.a",
"title": "Information security risk assessment, part a)",
"summary": "The organization shall define and apply an information security risk assessment process that: establishes and maintains information security risk criteria that include: 1) the risk acceptance criteria; and 2) criteria for performing information security risk assessments.The organization shall retain documented information about the information security risk assessment process.",
"mappedControls": [
"cp-risk-mgmt-objectives",
"cp-risk-assess"
]
},
{
"ref": "6.1.2.b",
"title": "Information security risk assessment, part b)",
"summary": "The organization shall define and apply an information security risk assessment process that: ensures that repeated information security risk assessments produce consistent, valid and comparable results. The organization shall retain documented information about the information security risk assessment process.",
"mappedControls": [
"cp-risk-mgmt-objectives",
"cp-risk-assess",
"cp-risk-registry"
]
},
{
"ref": "6.1.2.c",
"title": "Information security risk assessment, part c)",
"summary": "The organization shall define and apply an information security risk assessment process that identifies the information security risks: 1) to identify risks associated with the loss of confidentiality, integrity and availability for information within the scope of the information security management system; and 2) identify the risk owners. The organization shall retain documented information about the information security risk assessment process.",
"mappedControls": [
"cp-risk-assess",
"cp-risk-registry",
"cp-risk-fraud"
]
},
{
"ref": "6.1.2.d",
"title": "Information security risk assessment, part d)",
"summary": "The organization shall define and apply an information security risk assessment process that analyzes the information security risks [to] 1) assess the potential consequences that would result if the risks identified in 6.1.2 c) 1) were to materialize 2) assess the realistic likelihood of occurence of the risks identified in 6.1.2 c) 1)[and] 3) determine the levels of risk. The organization shall retain documented information about the information security risk assessment process.",
"mappedControls": [
"cp-risk-mgmt",
"cp-risk-mgmt-objectives",
"cp-risk-assess",
"cp-risk-registry",
"cp-risk-fraud"
]
},
{
"ref": "6.1.2.e",
"title": "Information security risk assessment, part e)",
"summary": "The organization shall define and apply an information security risk assessment process that evaluates the information security risks [to] 1) compare the results of risk analysis with the risk criteria established in 6.1.2 [and] 2) prioritize the analyzed risks for risk treatment. The organization shall retain documented information about the information security risk assessment process.",
"mappedControls": [
"cp-risk-mgmt",
"cp-risk-mgmt-objectives",
"cp-risk-assess",
"cp-risk-registry",
"cp-risk-mitigation"
]
},
{
"ref": "6.1.3.a",
"title": "Information security risk treatment, part a)",
"summary": "The organization shall define and apply an information security risk treatment process to: select appropriate information security treatment options, taking account of the risk assessment results. The organization shall retain documented information about the information security risk treatment process.",
"mappedControls": [
"cp-risk-assess",
"cp-risk-mitigation",
"cp-risk-registry"
]
},
{
"ref": "6.1.3.b",
"title": "Information security risk treatment, part b)",
"summary": "The organization shall define and apply an information security risk treatment process to: determine all controls that are necessary to implement the information security risk treatment option(s) chosen. The organization shall retain documented information about the information security risk treatment process. NOTE 1: Organizations can design controls as required, or identify them from any source",
"mappedControls": [
"cp-risk-assess",
"cp-risk-mitigation"
]
},
{
"ref": "6.1.3.c",
"title": "Information security risk treatment, part c)",
"summary": "The organization shall define and apply an information security risk treatment process to: compare the controls determined in 6.1.3 b) with those in Annex A and verify that nonecessary controls have been omitted. The organization shall retain documented information about the information security risk treatment process. Note 2) Annex A contains a list of possible information security controls. Users of this document are directed to Annex A to ensure that no necessary information security controls are overlooked.",
"mappedControls": [
"cp-risk-mitigation",
"cp-audit-control-deficiency",
"cp-audit-internal",
"cp-audit-tools",
"cp-compliance-monitor"
]
},
{
"ref": "6.1.3.d",
"title": "Information security risk treatment, part d)",
"summary": "The organization shall define and apply an information security risk treatment process to: produce a Statement of Applicability that contains the necessary controls (see 6.1.3 b) and c)) justification for inclusions, whether the necessary controls are implemented or not, and the justification for excluding any of the Annex A controls. The organization shall retain documented information about the information security risk treatment process.",
"mappedControls": [
"cp-ism-scope",
"cp-risk-assess",
"cp-risk-registry"
]
},
{
"ref": "6.1.3.e",
"title": "Information security risk treatment, part e)",
"summary": "The organization shall define and apply an information security risk treatment process to: formulate an information security risk treatment plan. The organization shall retain documented information about the information security risk treatment process.",
"mappedControls": [
"cp-risk-mgmt",
"cp-risk-mitigation",
"cp-risk-registry"
]
},
{
"ref": "6.1.3.f",
"title": "Information security risk treatment, part f)",
"summary": "The organization shall define and apply an information security risk treatment process to: obtain risk owners’ approval of the information security risk treatment plan and acceptance of the residual information security risks. The organization shall retain documented information about the information security risk treatment process.",
"mappedControls": [
"cp-risk-registry"
]
},
{
"ref": "6.2.a",
"title": "Information security objectives and planning to achieve them, part a)",
"summary": "The organization shall establish information security objectives at relevant functions and levels. The information security objectives shall: be consistent with the information security policy. The organization shall retain documented information on the information security objectives.",
"mappedControls": [
"cp-role-assignment",
"cp-policy-framework",
"cp-ism-policies"
]
},
{
"ref": "6.2.b",
"title": "Information security objectives and planning to achieve them, part b)",
"summary": "The organization shall establish information security objectives at relevant functions and levels. The information security objectives shall: be measurable (if practicable). The organization shall retain documented information on the information security objectives.",
"mappedControls": [
"cp-role-assignment",
"cp-ism-reporting",
"cp-model-metrics"
]
},
{
"ref": "6.2.c",
"title": "Information security objectives and planning to achieve them, part c)",
"summary": "The organization shall establish information security objectives at relevant functions and levels. The information security objectives shall: take into account applicable information security requirements, and results from risk assessment and risk treatment. The organization shall retain documented information on the information security objectives.",
"mappedControls": [
"cp-ism-reporting",
"cp-model-metrics"
]
},
{
"ref": "6.2.d",
"title": "Information security objectives and planning to achieve them, part d)",
"summary": "The organization shall establish information security objectives at relevant functions and levels. The information security objectives shall: be monitored. The organization shall retain documented information on the information security objectives.",
"mappedControls": [
"cp-ism-reporting",
"cp-model-metrics"
]
},
{
"ref": "6.2.e",
"title": "Information security objectives and planning to achieve them, part e)",
"summary": "The organization shall establish information security objectives at relevant functions and levels. The information security objectives shall: be communicated. The organization shall retain documented information on the information security objectives.",
"mappedControls": [
"cp-internal-comms",
"cp-training-awareness",
"cp-model-principles"
]
},
{
"ref": "6.2.f",
"title": "Information security objectives and planning to achieve them, part f)",
"summary": "The organization shall establish information security objectives at relevant functions and levels. The information security objectives shall: be be updated as appropriate. The organization shall retain documented information on the information security objectives.",
"mappedControls": [
"cp-role-assignment",
"cp-model-principles"
]
},
{
"ref": "6.2.g",
"title": "Information security objectives and planning to achieve them, part g)",
"summary": "The organization shall establish information security objectives at relevant functions and levels. The information security objectives shall: be available as documented information. The organization shall retain documented information on the information security objectives.",
"mappedControls": [
"cp-policy-framework"
]
},
{
"ref": "6.2.h",
"title": "Information security objectives and planning to achieve them, part h)",
"summary": "The organization shall retain documented information on the information security objectives. When planning how to achieve its information security objectives, the organization shall determine: what will be done.",
"mappedControls": [
"cp-ism-policies",
"cp-role-assignment"
]
},
{
"ref": "6.2.i",
"title": "Information security objectives and planning to achieve them, part i)",
"summary": "The organization shall retain documented information on the information security objectives. When planning how to achieve its information security objectives, the organization shall determine: what resources will be required.",
"mappedControls": [
"cp-model-architecture",
"cp-bcdr"
]
},
{
"ref": "6.2.j",
"title": "Information security objectives and planning to achieve them, part j)",
"summary": "The organization shall retain documented information on the information security objectives. When planning how to achieve its information security objectives, the organization shall determine: who will be responsible.",
"mappedControls": [
"cp-role-assignment"
]
},
{
"ref": "6.2.k",
"title": "Information security objectives and planning to achieve them, part k)",
"summary": "The organization shall retain documented information on the information security objectives. When planning how to achieve its information security objectives, the organization shall determine: when it will be completed.",
"mappedControls": [
"cp-ccm-config"
]
},
{
"ref": "6.2.l",
"title": "Information security objectives and planning to achieve them, part l)",
"summary": "The organization shall retain documented information on the information security objectives. When planning how to achieve its information security objectives, the organization shall determine: how the results will be evaluated.",
"mappedControls": [
"cp-model-metrics",
"cp-model-quality"
]
}
]
},
{
"title": "7 - Support",
"controls": [
{
"ref": "7.1",
"title": "Resources",
"summary": "The organization shall determine and provide the resources needed for the establishment, implementation, maintenance and continual improvement of the information security management system.",
"mappedControls": [
"cp-ism-scope",
"cp-hr-mgmt",
"cp-model-metrics",
"cp-model-quality"
]
},
{
"ref": "7.2.a",
"title": "Competence, part a)",
"summary": "The organization shall: determine the necessary competence of person(s) doing work under its control that affects its information security performance.",
"mappedControls": [
"cp-employee-screening",
"cp-employee-performance",
"cp-employee-development"
]
},
{
"ref": "7.2.b",
"title": "Competence, part b)",
"summary": "The organization shall: ensure that these persons are competent on the basis of appropriate education, training, or experience.",
"mappedControls": [
"cp-employee-screening",
"cp-employee-development",
"cp-hr-mgmt"
]
},
{
"ref": "7.2.c",
"title": "Competence, part c)",
"summary": "The organization shall: where applicable, take actions to acquire the necessary competence, and evaluate the effectiveness of the actions taken. NOTE: Applicable actions can include, for example: the provision of training to, the mentoring of, or the reassignment of current employees; or the hiring or contracting of competent persons.",
"mappedControls": [
"cp-employee-development",
"cp-sanctions",
"cp-training-policy",
"cp-training-awareness"
]
},
{
"ref": "7.2.d",
"title": "Competence, part d)",
"summary": "The organization shall: retain appropriate documented information as evidence of competence.",
"mappedControls": [
"cp-employee-screening",
"cp-employee-development",
"cp-sanctions",
"cp-hr-mgmt"
]
},
{
"ref": "7.3.a",
"title": "Awareness, part a)",
"summary": "Persons doing work under the organization’s control shall be aware of: the information security policy.",
"mappedControls": [
"cp-training-awareness"
]
},
{
"ref": "7.3.b",
"title": "Awareness, part b)",
"summary": "Persons doing work under the organization’s control shall be aware of: their contribution to the effectiveness of the information security management system, including the benefits of improved information security performance.",
"mappedControls": [
"cp-training-awareness",
"cp-employee-development",
"cp-sanctions"
]
},
{
"ref": "7.3.c",
"title": "Awareness, part c)",
"summary": "Persons doing work under the organization’s control shall be aware of: the implications of not conforming with the information security management system requirements.",
"mappedControls": [
"cp-training-awareness",
"ref-employee-handbook",
"cp-employee-acceptable-use"
]
},
{
"ref": "7.4.a",
"title": "Communication, part a)",
"summary": "The organization shall determine the need for internal and external communications relevant to the information security management system including: on what to communicate.",
"mappedControls": [
"cp-internal-comms",
"cp-audit-customers",
"cp-breach-customer",
"cp-privacy-notices",
"ref-privacy-policy",
"cp-vendor-contracts"
]
},
{
"ref": "7.4.b",
"title": "Communication, part b)",
"summary": "The organization shall determine the need for internal and external communications relevant to the information security management system including: when to communicate.",
"mappedControls": [
"cp-internal-comms",
"cp-breach-customer",
"cp-privacy-notices"
]
},
{
"ref": "7.4.c",
"title": "Communication, part c)",
"summary": "The organization shall determine the need for internal and external communications relevant to the information security management system including: with whom to communicate.",
"mappedControls": [
"cp-ism-scope",
"cp-internal-comms"
]
},
{
"ref": "7.4.d",
"title": "Communication, part d)",
"summary": "The organization shall determine the need for internal and external communications relevant to the information security management system including: how to communicate.",
"mappedControls": [
"cp-ir-playbook",
"cp-bcdr",
"cp-breach-customer",
"cp-breach-authorities",
"cp-breach-letter"
]
},
{
"ref": "7.5.1.a",
"title": "Documented information - General, part a)",
"summary": "The organization’s information security management system shall include: documented information required by this document. NOTE The extent of documented information for an information security management system can differ from one organization to another due to: 1) the size of organization and its type of activities, processes, products and services; 2) the complexity of processes and their interactions; and 3) the competence of persons.",
"mappedControls": [
"cp-policy-framework",
"cp-ism-scope",
"cp-compliance-mgmt"
]
},
{
"ref": "7.5.1.b",
"title": "Documented information - General, part b)",
"summary": "The organization’s information security management system shall include: documented information determined by the organization as being necessary for the effectiveness of the information security management system. NOTE The extent of documented information for an information security management system can differ from one organization to another due to: 1) the size of organization and its type of activities, processes, products and services; 2) the complexity of processes and their interactions; and 3) the competence of persons.",
"mappedControls": [
"cp-employee-screening",
"cp-employee-development"
]
},
{
"ref": "7.5.2.a",
"title": "Documented information - Creating and updating, part a)",
"summary": "When creating and updating documented information the organization shall ensure appropriate: identification and description (e.g. a title, date, author, or reference number).",
"mappedControls": [
"cp-policy-mgmt"
]
},
{
"ref": "7.5.2.b",
"title": "Documented information - Creating and updating, part b)",
"summary": "When creating and updating documented information the organization shall ensure appropriate:format (e.g. language, software version, graphics) and media (e.g. paper, electronic).",
"mappedControls": []
},
{
"ref": "7.5.2.c",
"title": "Documented information - Creating and updating, part c)",
"summary": "When creating and updating documented information the organization shall ensure appropriate:review and approval for suitability and adequacy.",
"mappedControls": [
"cp-policy-framework"
]
},
{
"ref": "7.5.3.a",
"title": "Documented information - Control, part a)",
"summary": "Documented information required by the information security management system and by this International Standard shall be controlled to ensure: it is available and suitable for use, where and when it is needed.",
"mappedControls": [
"cp-policy-framework",
"cp-privacy-notices",
"ref-privacy-policy",
"cp-internal-comms"
]
},
{
"ref": "7.5.3.b",
"title": "Documented information - Control, part b)",
"summary": "Documented information required by the information security management system and by this International Standard shall be controlled to ensure: it is adequately protected (e.g. from loss of confidentiality, improper use, or loss of integrity).",
"mappedControls": [
"cp-data-classification",
"cp-data-handling",
"cp-data-backup",
"cp-data-protection",
"cp-data-protection-integrity",
"cp-audit-trails-integrity",
"cp-ccm-config"
]
},
{
"ref": "7.5.3.c",
"title": "Documented information - Control, part c)",
"summary": "For the control of documented information, the organization shall address the following activities, as applicable: distribution, access, retrieval and use. NOTE Access can imply a decision regarding the permission to view the documented information only, or the permission and authority to view and change the documented information, etc.",
"mappedControls": [
"cp-access-standards",
"cp-data-handling",
"cp-data-protection",
"cp-access-privileged",
"cp-access-rbac"
]
},
{
"ref": "7.5.3.d",
"title": "Documented information - Control, part d)",
"summary": "For the control of documented information, the organization shall address the following activities, as applicable: storage and preservation, including the preservation of legibility.",
"mappedControls": [
"cp-data-lifecycle",
"cp-data-backup",
"cp-data-protection",
"cp-data-protection-integrity",
"cp-audit-trails-integrity"
]
},
{
"ref": "7.5.3.e",
"title": "Documented information - Control, part e)",
"summary": "For the control of documented information, the organization shall address the following activities, as applicable: control of changes (e.g. version control).",
"mappedControls": [
"cp-data-protection-integrity",
"cp-ccm-config",
"cp-access-change"
]
},
{
"ref": "7.5.3.f",
"title": "Documented information - Control, part f)",
"summary": "For the control of documented information, the organization shall address the following activities, as applicable: retention and disposition. Documented information of external origin, determined by the organization to be necessary for the planning and operation of the information security management system, shall be identified as appropriate, and controlled.",
"mappedControls": [
"cp-data-lifecycle",
"cp-data-backup",
"cp-data-deletion",
"cp-mdm-disposal"
]
}
]
},
{
"title": "8 - Operation",
"controls": [
{
"ref": "8.1",
"title": "Operational planning and control",
"summary": "The organization shall plan, implement and control the processes needed to meet requirements, and to implement the actions determined in Clause 6, by establishing criteria for the processes and implementing control of the processes in accordance with the criteria. Documented information shall be available to the extent necessary to have confidence that the processes have been carried out as planned. The organization shall control planned changes and review the consequences of unintended changes, taking action to mitigate any adverse effects, as necessary. The organization shall ensure that outsourced processes are determined and controlled.",
"mappedControls": [
"cp-sdlc-outsourcing",
"cp-vendor-vtr",
"cp-vendor-contracts",
"cp-vendor-monitor"
]
},
{
"ref": "8.2",
"title": "Information security risk assessment",
"summary": "The organization shall perform information security risk assessments at planned intervals or when significant changes are proposed or occur, taking account of the criteria established in 6.1.2 a). The organization shall retain documented information of the results of the information security risk assessments.",
"mappedControls": [
"cp-risk-mgmt",
"cp-risk-assess",
"cp-risk-registry",
"cp-risk-fraud"
]
},
{
"ref": "8.3",
"title": "Information security risk treatment",
"summary": "The organization shall implement the information security risk treatment plan. The organization shall retain documented information of the results of the information security risk treatment.",
"mappedControls": [
"cp-risk-registry",
"cp-risk-mitigation",
"cp-risk-insurance"
]
}
]
},
{
"title": "9 - Performance evaluation",
"controls": [
{
"ref": "9.1.a",
"title": "Monitoring, measurement, analysis, and evaluation, part a)",
"summary": "The organization shall evaluate the information security performance and the effectiveness of the information security management system. The organization shall determine: what needs to be monitored and measured, including information security processes and controls. Documented information shall be available as evidence of the results.",
"mappedControls": [
"cp-compliance-monitor",
"cp-model-metrics",
"cp-model-quality"
]
},
{
"ref": "9.1.b",
"title": "Monitoring, measurement, analysis, and evaluation, part b)",
"summary": "The organization shall evaluate the information security performance and the effectiveness of the information security management system. The organization shall determine: the methods for monitoring, measurement, analysis and evaluation, as applicable, to ensure valid results. The methods selected should produce comparable and reproducible results to be considered valid. Documented information shall be available as evidence of the results.",
"mappedControls": [
"cp-compliance-monitor",
"cp-model-metrics",
"cp-model-quality"
]
},
{
"ref": "9.1.c",
"title": "Monitoring, measurement, analysis, and evaluation, part c)",
"summary": "The organization shall evaluate the information security performance and the effectiveness of the information security management system. The organization shall determine: when the monitoring and measuring shall be performed. Documented information shall be available as evidence of the results.",
"mappedControls": [
"cp-model-metrics",
"cp-audit-internal",
"cp-compliance-monitor"
]
},
{
"ref": "9.1.d",
"title": "Monitoring, measurement, analysis, and evaluation, part d)",
"summary": "The organization shall evaluate the information security performance and the effectiveness of the information security management system. The organization shall determine: who shall monitor and measure. Documented information shall be available as evidence of the results.",
"mappedControls": [
"cp-role-assignment",
"cp-compliance-mgmt"
]
},
{
"ref": "9.1.e",
"title": "Monitoring, measurement, analysis, and evaluation, part e)",
"summary": "The organization shall evaluate the information security performance and the effectiveness of the information security management system. The organization shall determine: when the results from monitoring and measurement shall be analysed and evaluated.",
"mappedControls": [
"cp-audit-tools",
"cp-compliance-monitor"
]
},
{
"ref": "9.1.f",
"title": "Monitoring, measurement, analysis, and evaluation, part f)",
"summary": "The organization shall evaluate the information security performance and the effectiveness of the information security management system. The organization shall determine: who shall analyse and evaluate these results. The organization shall retain appropriate documented information as evidence of the monitoring and measurement results.",
"mappedControls": [
"cp-audit-control-deficiency",
"cp-audit-review",
"cp-compliance-mgmt"
]
},
{
"ref": "9.2.1.a",
"title": "Internal audit, General part a)",
"summary": "The organization shall conduct internal audits at planned intervals to provide information on whether the information security management system: conforms to the organization’s own requirements for its information security management system; and the requirements of this International Standard.",
"mappedControls": [
"cp-internal-audit"
]
},
{
"ref": "9.2.1.b",
"title": "Internal audit, General, part b)",
"summary": "The organization shall conduct internal audits at planned intervals to provide information on whether the information security management system: is effectively implemented and maintained.",
"mappedControls": [
"cp-internal-audit",
"cp-audit-control-deficiency",
"cp-audit-review"
]
},
{
"ref": "9.2.2.a",
"title": "Internal audit programme, part a)",
"summary": "The organization shall plan, establish, implement and maintain an audit programme(s), including the frequency, methods, responsibilities, planning requirements and reporting. When establishing the internal audit programme(s), the organization shall consider the importance of the processes concerned and the results of previous audits. The organization shall: define the audit criteria and scope for each audit. Documented information shall be available as evidence of the implementation of the audit programme(s)and the audit results.",
"mappedControls": [
"cp-audit-types",
"cp-audit-internal",
"cp-audit-review"
]
},
{
"ref": "9.2.2.b",
"title": "Internal audit programme, part b)",
"summary": "The organization shall plan, establish, implement and maintain an audit programme(s), including the frequency, methods, responsibilities, planning requirements and reporting. When establishing the internal audit programme(s), the organization shall consider the importance of the processes concerned and the results of previous audits. The organization shall: select auditors and conduct audits that ensure objectivity and the impartiality of the audit process. Documented information shall be available as evidence of the implementation of the audit programme(s)and the audit results.",
"mappedControls": [
"cp-audit-types",
"cp-audit-internal",
"cp-audit-review"
]
},
{
"ref": "9.2.2.c",
"title": "Internal audit programme, part c)",
"summary": "The organization shall plan, establish, implement and maintain an audit programme(s), including the frequency, methods, responsibilities, planning requirements and reporting. When establishing the internal audit programme(s), the organization shall consider the importance of the processes concerned and the results of previous audits. The organization shall: ensure that the results of the audits are reported to relevant management. Documented information shall be available as evidence of the implementation of the audit programme(s)and the audit results.",
"mappedControls": [
"cp-audit-review",
"cp-audit-internal"
]
},
{
"ref": "9.3.1",
"title": "Management review, General",
"summary": "Top management shall review the organization’s information security management system at planned intervals to ensure its continuing suitability, adequacy and effectiveness.",
"mappedControls": [
"cp-ism-scope",
"cp-policy-mgmt",
"cp-model-metrics",
"cp-model-quality",
"cp-compliance-mgmt",
"cp-ism-reporting"
]
},
{
"ref": "9.3.2.a",
"title": "Management review inputs, part a)",
"summary": "The management review shall include consideration of: the status of actions from previous management reviews.",
"mappedControls": [
"cp-audit-review"
]
},
{
"ref": "9.3.2.b",
"title": "Management review inputs, part b)",
"summary": "The management review shall include consideration of: changes in external and internal issues that are relevant to the information security management system.",
"mappedControls": [
"cp-ism-scope",
"cp-policy-framework"
]
},
{
"ref": "9.3.2.c",
"title": "Management review inputs, part c)",
"summary": "The management review shall include consideration of: changes in needs and expectations of interested parties that are relevant to the information security management system",
"mappedControls": [
"cp-ism-scope"
]
},
{
"ref": "9.3.2.d",
"title": "Management review, part d)",
"summary": "The management review shall include consideration of: feedback on the information security performance, including trends in: nonconformities and corrective actions; monitoring and measurement results; audit results; and fulfilment of information security objectives.",
"mappedControls": [
"cp-model-metrics",
"cp-model-quality",
"cp-compliance-mgmt",
"cp-ism-reporting",
"cp-audit-review",
"cp-sdlc-pentest",
"cp-ir-emergency",
"cp-ir-tabletop",
"cp-bcdr-test"
]
},
{
"ref": "9.3.2.e",
"title": "Management review, part e)",
"summary": "The management review shall include consideration of: feedback from interested parties.",
"mappedControls": [
"cp-employee-whistleblower",
"cp-audit-review"
]
},
{
"ref": "9.3.2.f",
"title": "Management review, part f)",
"summary": "The management review shall include consideration of: results of risk assessment and status of risk treatment plan.",
"mappedControls": [