forked from intuitem/ciso-assistant-community
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathccb-cff-2023-03-01.yaml
4126 lines (4112 loc) · 202 KB
/
ccb-cff-2023-03-01.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
urn: urn:intuitem:risk:library:ccb-cff-2023-03-01
locale: en
ref_id: CCB-CFF-2023-03-01
name: CCB CyberFundamentals Framework
description: 'Centre For Cybersecurity Belgium - CyberFundamentals Framework
https://ccb.belgium.be'
copyright: All texts, layouts, designs and other elements of any nature in this document
are subject to copyright law.
version: 4
provider: CCB
packager: intuitem
objects:
framework:
urn: urn:intuitem:risk:framework:ccb-cff-2023-03-01
ref_id: CCB-CFF-2023-03-01
name: CCB CyberFundamentals Framework
description: Centre For Cybersecurity Belgium - CyberFundamentals Framework
min_score: 1
max_score: 5
scores_definition:
- score: 1
name: Initial
description: 'No Process documentation or not formally approved by management.
Standard process does not exist.'
- score: 2
name: Repeatable
description: 'Formally approved Process documentation exists but not reviewed
in the previous 2 years.
Ad-hoc process exists and is done informally.'
- score: 3
name: Defined
description: 'Formally approved Process documentation exists, and exceptions
are documented and approved. Documented & approved exceptions < 5% of the
time.
Formal process exists and is implemented. Evidence available for most activities.
Less than 10% process exceptions.'
- score: 4
name: Managed
description: 'Formally approved Process documentation exists, and exceptions
are documented and approved. Documented & approved exceptions < 3% of the
time.
Formal process exists and is implemented. Evidence available for all activities.
Detailed metrics of the process are captured and reported.
Minimal target for metrics has been established. Less than 5% of process exceptions.'
- score: 5
name: Optimizing
description: 'Formally approved Process documentation exists, and exceptions
are documented and approved. Documented & approved exceptions < 0,5% of the
time.
Formal process exists and is implemented. Evidence available for all activities.
Detailed metrics of the process are captured and reported.
Minimal target for metrics has been established and continually improving.
Less than 1% of process exceptions.'
implementation_groups_definition:
- ref_id: B
name: basic
description: null
- ref_id: I
name: important
description: null
- ref_id: E
name: essential
description: null
- ref_id: BK
name: basic - key measures
description: null
- ref_id: IK
name: important - key measures
description: null
- ref_id: EK
name: essential - key measures
description: null
requirement_nodes:
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id
assessable: false
depth: 1
ref_id: ID
name: IDENTIFY (ID)
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.am
assessable: false
depth: 2
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id
ref_id: ID.AM
name: Asset Management
description: "The data, personnel, devices, systems, and facilities that enable\
\ the organization to achieve business purposes are identified and managed\
\ consistent with their relative importance to organizational objectives and\
\ the organization\u2019s risk strategy."
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.am-1
assessable: false
depth: 3
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.am
ref_id: ID.AM-1
description: Physical devices and systems within the organization are inventoried
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:basic_id.am-1.1
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.am-1
ref_id: BASIC_ID.AM-1.1
description: An inventory of assets associated with information and information
processing facilities within the organization shall be documented, reviewed,
and updated when changes occur.
annotation: "\u2022\tThis inventory includes fixed and portable computers, tablets,\
\ mobile phones, Programmable Logic Controllers (PLCs), sensors, actuators,\
\ robots, machine tools, firmware, network switches, routers, power supplies,\
\ and other networked components or devices. \n\u2022\tThis inventory must\
\ include all assets, whether or not they are connected to the organization's\
\ network.\n\u2022\tThe use of an IT asset management tool could be considered."
implementation_groups:
- B
- I
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:important_id.am-1.2
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.am-1
ref_id: IMPORTANT_ID.AM-1.2
description: "The inventory of assets associated with information and information\
\ processing facilities shall reflect changes in the organization\u2019s\
\ context and include all information necessary for effective accountability."
annotation: "\u2022\tInventory specifications include for example, manufacturer,\
\ device type, model, serial number, machine names and network addresses,\
\ physical location\u2026\n\u2022\tAccountability is the obligation to explain,\
\ justify, and take responsibility for one's actions, it implies answerability\
\ for the outcome of the task or process.\n\u2022\tChanges include the decommissioning\
\ of material."
implementation_groups:
- I
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:important_id.am-1.3
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.am-1
ref_id: IMPORTANT_ID.AM-1.3
description: When unauthorized hardware is detected, it shall be quarantined
for possible exception handling, removed, or replaced, and the inventory shall
be updated accordingly.
annotation: "\u2022\tAny unsupported hardware without an exception documentation,\
\ is designated as unauthorized.\n\u2022\tUnauthorized hardware can be detected\
\ during inventory, requests for support by the user or other means."
implementation_groups:
- I
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.am-1.4
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.am-1
ref_id: ID.AM-1.4
description: Mechanisms for detecting the presence of unauthorized hardware
and firmware components within the organization's network shall be identified.
annotation: "\u2022\tWhere safe and feasible, these mechanisms should be automated.\n\
\u2022\tThere should be a process to address unauthorized assets on a frequently\
\ basis; The organization may choose to remove the asset from the network,\
\ deny the asset from connecting remotely to the network, or quarantine the\
\ asset."
implementation_groups:
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.am-2
assessable: false
depth: 3
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.am
ref_id: ID.AM-2
description: Software platforms and applications within the organization are
inventoried
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:basic_id.am-2.1
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.am-2
ref_id: BASIC_ID.AM-2.1
description: An inventory that reflects what software platforms and applications
are being used in the organization shall be documented, reviewed, and updated
when changes occur.
annotation: "\u2022\tThis inventory includes software programs, software platforms\
\ and databases, even if outsourced (SaaS).\n\u2022\tOutsourcing arrangements\
\ should be part of the contractual agreements with the provider.\n\u2022\t\
Information in the inventory should include for example: name, description,\
\ version, number of users, data processed, etc.\n\u2022\tA distinction should\
\ be made between unsupported software and unauthorized software.\n\u2022\t\
The use of an IT asset management tool could be considered."
implementation_groups:
- B
- I
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:important_id.am-2.2
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.am-2
ref_id: IMPORTANT_ID.AM-2.2
description: "The inventory of software platforms and applications associated\
\ with information and information processing shall reflect changes in the\
\ organization\u2019s context and include all information necessary for effective\
\ accountability."
annotation: The inventory of software platforms and applications should include
the title, publisher, initial install/use date, and business purpose for each
entry; where appropriate, include the Uniform Resource Locator (URL), app
store(s), version(s), deployment mechanism, and decommission date.
implementation_groups:
- I
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:important_id.am-2.3
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.am-2
ref_id: IMPORTANT_ID.AM-2.3
description: Individuals who are responsible and who are accountable for administering
software platforms and applications within the organization shall be identified.
annotation: No additional guidance on this topic.
implementation_groups:
- I
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:important_id.am-2.4
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.am-2
ref_id: IMPORTANT_ID.AM-2.4
description: When unauthorized software is detected, it shall be quarantined
for possible exception handling, removed, or replaced, and the inventory shall
be updated accordingly.
annotation: "\u2022\tAny unsupported software without an exception documentation,\
\ is designated as unauthorized.\n\u2022\tUnauthorized software can be detected\
\ during inventory, requests for support by the user or other means."
implementation_groups:
- I
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.am-2.5
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.am-2
ref_id: ID.AM-2.5
description: "Mechanisms for detecting the presence of unauthorized software\
\ within the organization\u2019s ICT/OT environment shall be identified. "
annotation: "\u2022\tWhere safe and feasible, these mechanisms should be automated.\n\
\u2022\tThere should be a process to regularly address unauthorised assets;\
\ The organization may choose to remove the asset from the network, deny the\
\ asset from connecting remotely to the network, or quarantine the asset."
implementation_groups:
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.am-3
assessable: false
depth: 3
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.am
ref_id: ID.AM-3
description: Organizational communication and data flows are mapped
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:basic_id.am-3.1
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.am-3
ref_id: BASIC_ID.AM-3.1
description: Information that the organization stores and uses shall be identified.
annotation: "\u2022\tStart by listing all the types of information your business\
\ stores or uses. Define \u201Cinformation type\u201D in any useful way that\
\ makes sense to your business. You may want to have your employees make a\
\ list of all the information they use in their regular activities. List everything\
\ you can think of, but you do not need to be too specific. For example, you\
\ may keep customer names and email addresses, receipts for raw material,\
\ your banking information, or other proprietary information.\n\u2022\tConsider\
\ mapping this information with the associated assets identified in the inventories\
\ of physical devices, systems, software platforms and applications used within\
\ the organization (see ID.AM-1 & ID.AM-2)."
implementation_groups:
- B
- I
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:important_id.am-3.2
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.am-3
ref_id: IMPORTANT_ID.AM-3.2
description: All connections within the organization's ICT/OT environment, and
to other organization-internal platforms shall be mapped, documented, approved,
and updated as appropriate.
annotation: "\u2022\tConnection information includes, for example, the interface\
\ characteristics, data characteristics, ports, protocols, addresses, description\
\ of the data, security requirements, and the nature of the connection.\n\u2022\
\tConfiguration management can be used as supporting asset.\n\u2022\tThis\
\ documentation should not be stored only on the network it represents.\n\u2022\
\tConsider keeping a copy of this documentation in a safe offline environment\
\ (e.g. offline hard disk, paper hardcopy, \u2026)"
implementation_groups:
- I
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.am-3.3
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.am-3
ref_id: ID.AM-3.3
description: "The information flows/data flows within the organization\u2019\
s ICT/OT environment, as well as to other organization-internal systems shall\
\ be mapped, documented, authorized, and updated when changes occur."
annotation: "\u2022\tWith knowledge of the information/data flows within a system\
\ and between systems, it is possible to determine where information can and\
\ cannot go.\n\u2022\tConsider:\no\tEnforcing controls restricting connections\
\ to only authorized interfaces.\no\tHeightening system monitoring activity\
\ whenever there is an indication of increased risk to organization's critical\
\ operations and assets.\no\tProtecting the system from information leakage\
\ due to electromagnetic signals emanations."
implementation_groups:
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.am-4
assessable: false
depth: 3
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.am
ref_id: ID.AM-4
description: External information systems are catalogued
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:important_id.am-4.1
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.am-4
ref_id: IMPORTANT_ID.AM-4.1
description: The organization shall map, document, authorize and when changes
occur, update, all external services and the connections made with them.
annotation: "\u2022\tOutsourcing of systems, software platforms and applications\
\ used within the organization is covered in ID.AM-1 & ID.AM-2\n\u2022\tExternal\
\ information systems are systems or components of systems for which organizations\
\ typically have no direct supervision and authority over the application\
\ of security requirements and controls, or the determination of the effectiveness\
\ of implemented controls on those systems i.e., services that are run in\
\ cloud, SaaS, hosting or other external environments, API (Application Programming\
\ Interface)\u2026\n\u2022\tMapping external services and the connections\
\ made to them and authorizing them in advance avoids wasting unnecessary\
\ resources investigating a supposedly non-authenticated connection to external\
\ systems."
implementation_groups:
- I
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.am-4.2
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.am-4
ref_id: ID.AM-4.2
description: The flow of information to/from external systems shall be mapped,
documented, authorized, and update when changes occur.
annotation: Consider requiring external service providers to identify and document
the functions, ports, protocols, and services necessary for the connection
services.
implementation_groups:
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.am-5
assessable: false
depth: 3
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.am
ref_id: ID.AM-5
description: 'Resources (e.g., hardware, devices, data, time, personnel, and
software) are prioritized based on their classification, criticality, and
business value '
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:basic_id.am-5.1
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.am-5
ref_id: BASIC_ID.AM-5.1
description: "The organization\u2019s resources (hardware, devices, data, time,\
\ personnel, information, and software) shall be prioritized based on their\
\ classification, criticality, and business value."
annotation: "\u2022\tDetermine organization\u2019s resources (e.g., hardware,\
\ devices, data, time, personnel, information, and software):\no\tWhat would\
\ happen to my business if these resources were made public, damaged, lost\u2026\
?\no\tWhat would happen to my business when the integrity of resources is\
\ no longer guaranteed?\no\tWhat would happen to my business if I/my customers\
\ couldn\u2019t access these resources? And rank these resources based on\
\ their classification, criticality, and business value.\n\u2022\tResources\
\ should include enterprise assets. \u2022\tCreate a classification for sensitive\
\ information by first determining categories, e.g.\no\tPublic - freely accessible\
\ to all, even externally\no\tInternal - accessible only to members of your\
\ organization\no\tConfidential - accessible only to those whose duties require\
\ access.\n\u2022\tCommunicate these categories and identify what types of\
\ data fall into these categories (HR data, financial data, legal data, personal\
\ data, etc.).\n\u2022\tConsider the use of the Traffic Light Protocol (TLP).\n\
\u2022\tData classification should apply to the three aspects: C-I-A. Consider\
\ implementing an automated tool, such as a host-based Data Loss Prevention\
\ (DLP) tool to identify all sensitive data stored, processed, or transmitted\
\ through enterprise assets, including those located onsite or at a remote\
\ service provider."
implementation_groups:
- B
- I
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.am-6
assessable: false
depth: 3
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.am
ref_id: ID.AM-6
description: Cybersecurity roles, responsibilities, and authorities for the
entire workforce and third-party stakeholders are established
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:important_id.am-6.1
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.am-6
ref_id: IMPORTANT_ID.AM-6.1
description: '[KEY MEASURE] Information security and cybersecurity roles, responsibilities
and authorities within the organization shall be documented, reviewed, authorized,
and updated and alignment with organization-internal roles and external partners.'
annotation: "It should be considered to:\n\u2022\tDescribe security roles, responsibilities,\
\ and authorities: who in your organization should be consulted, informed,\
\ and held accountable for all or part of your assets.\n\u2022\tProvide security\
\ roles, responsibilities, and authority for all key functions in information/cyber\
\ security (legal, detection activities\u2026).\n\u2022\tInclude information/cybersecurity\
\ roles and responsibilities for third-party providers (e.g., suppliers, customers,\
\ partners) with physical or logical access to the organization\u2019s ICT/OT\
\ environment."
implementation_groups:
- I
- E
- IK
- EK
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.am-6.2
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.am-6
ref_id: ID.AM-6.2
description: The organization shall appoint an information security officer.
annotation: The information security officer should be responsible for monitoring
the implementation of the organization's information/cyber security strategy
and safeguards.
implementation_groups:
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.be
assessable: false
depth: 2
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id
ref_id: ID.BE
name: Business Environment
description: "The organization\u2019s mission, objectives, stakeholders, and\
\ activities are understood and prioritized; this information is used to inform\
\ cybersecurity roles, responsibilities, and risk management decisions."
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.be-1
assessable: false
depth: 3
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.be
ref_id: ID.BE-1
description: "The organization\u2019s role in the supply chain is identified\
\ and communicated"
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:important_id.be-1.1
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.be-1
ref_id: IMPORTANT_ID.BE-1.1
description: "The organization\u2019s role in the supply chain shall be identified,\
\ documented, and communicated. "
annotation: "\u2022\tThe organisation should be able to clearly identify who\
\ is upstream and downstream of the organisation and which suppliers provide\
\ services, capabilities, products and items to the organisation.\n\u2022\t\
The organisation should communicate its position to its upstream and downstream\
\ so that it is understood where they sit in terms of critical importance\
\ to the organisation's operations."
implementation_groups:
- I
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.be-1.2
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.be-1
ref_id: ID.BE-1.2
description: The organization shall protect its ICT/OT environment from supply
chain threats by applying security safeguards as part of a documented comprehensive
security strategy.
annotation: No additional guidance on this topic.
implementation_groups:
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.be-2
assessable: false
depth: 3
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.be
ref_id: ID.BE-2
description: "The organization\u2019s place in critical infrastructure and its\
\ industry sector is identified and communicated"
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:important_id.be-2.1
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.be-2
ref_id: IMPORTANT_ID.BE-2.1
description: "The organization\u2019s place in critical infrastructure and its\
\ industry sector shall be identified and communicated."
annotation: The organisation covered by NIS legislation has a responsibility
to know the other organisations in the same sector in order to work with them
to achieve the objectives set by NIS for that particular sector.
implementation_groups:
- I
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.be-3
assessable: false
depth: 3
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.be
ref_id: ID.BE-3
description: Priorities for organizational mission, objectives, and activities
are established and communicated
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:important_id.be-3.1
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.be-3
ref_id: IMPORTANT_ID.BE-3.1
description: Priorities for organizational mission, objectives, and activities
are established and communicated.
annotation: Information protection needs should be determined, and the related
processes revised as necessary.
implementation_groups:
- I
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.be-4
assessable: false
depth: 3
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.be
ref_id: ID.BE-4
description: Dependencies and critical functions for delivery of critical services
are established
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:important_id.be-4.1
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.be-4
ref_id: IMPORTANT_ID.BE-4.1
description: Dependencies and mission-critical functions for the delivery of
critical services shall be identified, documented, and prioritized according
to their criticality as part of the risk assessment process.
annotation: Dependencies and business critical functions should include support
services.
implementation_groups:
- I
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.be-5
assessable: false
depth: 3
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.be
ref_id: ID.BE-5
description: Resilience requirements to support delivery of critical services
are established for all operating states (e.g. under duress/attack, during
recovery, normal operations)
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:important_id.be-5.1
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.be-5
ref_id: IMPORTANT_ID.BE-5.1
description: To support cyber resilience and secure the delivery of critical
services, the necessary requirements are identified, documented and their
implementation tested and approved.
annotation: "\u2022\tConsider implementing resiliency mechanisms to support\
\ normal and adverse operational situations (e.g., failsafe, load balancing,\
\ hot swap).\n\u2022\tConsider aspects of business continuity management in\
\ e.g. Business Impact Analyse (BIA), Disaster Recovery Plan (DRP) and Business\
\ Continuity Plan (BCP)."
implementation_groups:
- I
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.be-5.2
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.be-5
ref_id: ID.BE-5.2
description: Information processing & supporting facilities shall implement
redundancy to meet availability requirements, as defined by the organization
and/or regulatory frameworks.
annotation: "\u2022\tConsider provisioning adequate data and network redundancy\
\ (e.g. redundant network devices, servers with load balancing, raid arrays,\
\ backup services, 2 separate datacentres, fail-over network connections,\
\ 2 ISP's\u2026).\n\u2022\tConsider protecting critical equipment/services\
\ from power outages and other failures due to utility interruptions (e.g.\
\ UPS & NO-break, frequent test, service contracts that include regular maintenance,\
\ redundant power cabling, 2 different power service providers...)."
implementation_groups:
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.be-5.3
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.be-5
ref_id: ID.BE-5.3
description: Recovery time and recovery point objectives for the resumption
of essential ICT/OT system processes shall be defined.
annotation: "\u2022\tConsider applying the 3-2-1 back-up rule to improve RPO\
\ and RTO (maintain at least 3 copies of your data, keep 2 of them at separate\
\ locations and one copy should be stored at an off-site location).\n\u2022\
\tConsider implementing mechanisms such as hot swap, load balancing and failsafe\
\ to increase resilience."
implementation_groups:
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.gv
assessable: false
depth: 2
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id
ref_id: ID.GV
name: Governance
description: "The policies, procedures, and processes to manage and monitor\
\ the organization\u2019s regulatory, legal, risk, environmental, and operational\
\ requirements are understood and inform the management of cybersecurity risk."
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.gv-1
assessable: false
depth: 3
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.gv
ref_id: ID.GV-1
description: Organizational cybersecurity policy is established and communicated
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:basic_id.gv-1.1
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.gv-1
ref_id: BASIC_ID.GV-1.1
description: Policies and procedures for information security and cyber security
shall be created, documented, reviewed, approved, and updated when changes
occur.
annotation: "\u2022\tPolicies and procedures used to identify acceptable practices\
\ and expectations for business operations, can be used to train new employees\
\ on your information security expectations, and can aid an investigation\
\ in case of an incident. These policies and procedures should be readily\
\ accessible to employees.\n\u2022\tPolicies and procedures for information-\
\ and cybersecurity should clearly describe your expectations for protecting\
\ the organization\u2019s information and systems, and how management expects\
\ the company\u2019s resources to be used and protected by all employees.\n\
\u2022\tPolicies and procedures should be reviewed and updated at least annually\
\ and every time there are changes in the organization or technology. Whenever\
\ the policies are changed, employees should be made aware of the changes."
implementation_groups:
- B
- I
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:important_id.gv-1.2
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.gv-1
ref_id: IMPORTANT_ID.GV-1.2
description: An organization-wide information security and cybersecurity policy
shall be established, documented, updated when changes occur, disseminated,
and approved by senior management.
annotation: "The policy should include, for example:\n\u2022\tThe identification\
\ and assignment of roles, responsibilities, management commitment, coordination\
\ among organizational entities, and compliance. Guidance on role profiles\
\ along with their identified titles, missions, tasks, skills, knowledge,\
\ competences is available in the \"European Cybersecurity Skills Framework\
\ Role Profiles\" by ENISA. (https://www.enisa.europa.eu/publications/european-cybersecurity-skills-framework-role-profiles)\n\
\u2022\tThe coordination among organizational entities responsible for the\
\ different aspects of security (i.e., technical, physical, personnel, cyber-physical,\
\ information, access control, media protection, vulnerability management,\
\ maintenance, monitoring)\n\u2022\tThe coverage of the full life cycle of\
\ the ICT/OT systems."
implementation_groups:
- I
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.gv-3
assessable: false
depth: 3
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.gv
ref_id: ID.GV-3
description: Legal and regulatory requirements regarding cybersecurity, including
privacy and civil liberties obligations, are understood and managed
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:basic_id.gv-3.1
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.gv-3
ref_id: BASIC_ID.GV-3.1
description: Legal and regulatory requirements regarding information/cybersecurity,
including privacy obligations, shall be understood and implemented.
annotation: There are no additional guidelines.
implementation_groups:
- B
- I
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:important_id.gv-3.2
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.gv-3
ref_id: IMPORTANT_ID.GV-3.2
description: Legal and regulatory requirements regarding information/cybersecurity,
including privacy obligations, shall be managed.
annotation: "\u2022\tThere should be regular reviews to ensure the continuous\
\ compliance with legal and regulatory requirements regarding information/cybersecurity,\
\ including privacy obligations.\n\u2022\tThis requirement also applies to\
\ contractors and service providers."
implementation_groups:
- I
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.gv-4
assessable: false
depth: 3
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.gv
ref_id: ID.GV-4
description: Governance and risk management processes address cybersecurity
risks
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:basic_id.gv-4.1
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.gv-4
ref_id: BASIC_ID.GV-4.1
description: As part of the company's overall risk management, a comprehensive
strategy to manage information security and cybersecurity risks shall be developed
and updated when changes occur.
annotation: This strategy should include determining and allocating the required
resources to protect the organisation's business-critical assets.
implementation_groups:
- B
- I
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:important_id.gv-4.2
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.gv-4
ref_id: IMPORTANT_ID.GV-4.2
description: "Information security and cybersecurity risks shall be documented,\
\ formally approved, and updated when changes occur.\t"
annotation: Consider using Risk Management tools.
implementation_groups:
- I
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.ra
assessable: false
depth: 2
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id
ref_id: ID.RA
name: Risk Assessment
description: The organization understands the cybersecurity risk to organizational
operations (including mission, functions, image, or reputation), organizational
assets, and individuals.
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.ra-1
assessable: false
depth: 3
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.ra
ref_id: ID.RA-1
description: Asset vulnerabilities are identified and documented
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:basic_id.ra-1.1
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.ra-1
ref_id: BASIC_ID.RA-1.1
description: Threats and vulnerabilities shall be identified.
annotation: "\u2022\tA vulnerability refers to a weakness in the organization\u2019\
s hardware, software, or procedures. It is a gap through which a bad actor\
\ can gain access to the organization\u2019s assets. A vulnerability exposes\
\ an organization to threats.\n\u2022\tA threat is a malicious or negative\
\ event that takes advantage of a vulnerability. \n\u2022\tThe risk is the\
\ potential for loss and damage when the threat does occur."
implementation_groups:
- B
- I
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:important_id.ra-1.2
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.ra-1
ref_id: IMPORTANT_ID.RA-1.2
description: A process shall be established to monitor, identify, and document
vulnerabilities of the organisation's business critical systems in a continuous
manner.
annotation: "\u2022\tWhere safe and feasible, the use of vulnerability scanning\
\ should be considered.\n\u2022\tThe organization should establish and maintain\
\ a testing program appropriate to its size, complexity, and maturity."
implementation_groups:
- I
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.ra-1.3
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.ra-1
ref_id: ID.RA-1.3
description: "To ensure that organization's operations are not adversely impacted\
\ by the testing process, performance/load testing and penetration testing\
\ on the organization\u2019s systems shall be conducted with care."
annotation: Consider validating security measures after each penetration test.
implementation_groups:
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.ra-2
assessable: false
depth: 3
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.ra
ref_id: ID.RA-2
description: Cyber threat intelligence is received from information sharing
forums and sources
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:important_id.ra-2.1
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.ra-2
ref_id: IMPORTANT_ID.RA-2.1
description: ' A threat and vulnerability awareness program that includes a
cross-organization information-sharing capability shall be implemented. '
annotation: A threat and vulnerability awareness program should include ongoing
contact with security groups and associations to receive security alerts and
advisories. (Security groups and associations include, for example, special
interest groups, forums, professional associations, news groups, and/or peer
groups of security professionals in similar organizations).This contact can
include the sharing of information about potential vulnerabilities and incidents.
This sharing capability should have an unclassified and classified information
sharing capability.
implementation_groups:
- I
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.ra-2.2
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.ra-2
ref_id: ID.RA-2.2
description: It shall be identified where automated mechanisms can be implemented
to make security alert and advisory information available to relevant organization
stakeholders.
annotation: No additional guidance on this topic.
implementation_groups:
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.ra-5
assessable: false
depth: 3
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.ra
ref_id: ID.RA-5
description: Threats, vulnerabilities, likelihoods, and impacts are used to
determine risk
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:basic_id.ra-5.1
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.ra-5
ref_id: BASIC_ID.RA-5.1
description: The organization shall conduct risk assessments in which risk is
determined by threats, vulnerabilities and impact on business processes and
assets.
annotation: "\u2022\tKeep in mind that threats exploit vulnerabilities.\n\u2022\
\tIdentify the consequences that losses of confidentiality, integrity and\
\ availability may have on the assets and related business processes."
implementation_groups:
- B
- I
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:important_id.ra-5.2
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.ra-5
ref_id: IMPORTANT_ID.RA-5.2
description: The organization shall conduct and document risk assessments in
which risk is determined by threats, vulnerabilities, impact on business processes
and assets, and the likelihood of their occurrence.
annotation: "\u2022\tRisk assessment should include threats from insiders and\
\ external parties.\n\u2022\tQualitative and/or quantitative risk analysis\
\ methods \n(MAPGOOD, ISO27005, CIS RAM, \u2026) can be used together with\
\ software tooling."
implementation_groups:
- I
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.ra-5.3
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.ra-5
ref_id: ID.RA-5.3
description: Risk assessment results shall be disseminated to relevant stakeholders.
annotation: No additional guidance on this topic.
implementation_groups:
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.ra-6
assessable: false
depth: 3
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.ra
ref_id: ID.RA-6
description: Risk responses are identified and prioritized
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:important_id.ra-6.1
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.ra-6
ref_id: IMPORTANT_ID.RA-6.1
description: "A comprehensive strategy shall be developed and implemented to\
\ manage risks to the organization\u2019s critical systems, that includes\
\ the identification and prioritization of risk responses."
annotation: "\u2022\tManagement and employees should be involved in information-\
\ and cybersecurity.\n\u2022\tIt should be identified what the most important\
\ assets are, and how they are protected.\n\u2022\tIt should be clear what\
\ impact will be if these assets are compromised.\n\u2022\tIt should be established\
\ how the implementation of adequate mitigation measures will be organized."
implementation_groups:
- I
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.rm
assessable: false
depth: 2
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id
ref_id: ID.RM
name: Risk Management Strategy
description: "The organization\u2019s priorities, constraints, risk tolerances,\
\ and assumptions are established and used to support operational risk decisions."
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.rm-1
assessable: false
depth: 3
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.rm
ref_id: ID.RM-1
description: Risk management processes are established, managed, and agreed
to by organizational stakeholders
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:important_id.rm-1.1
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.rm-1
ref_id: IMPORTANT_ID.RM-1.1
description: A cyber risk management process that identifies key internal and
external stakeholders and facilitates addressing risk-related issues and information
shall be created, documented, reviewed, approved, and updated when changes
occur.
annotation: 'External stakeholders include customers, investors and shareholders,
suppliers, government agencies and the wider community. '
implementation_groups:
- I
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.rm-2
assessable: false
depth: 3
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.rm
ref_id: ID.RM-2
description: Organizational risk tolerance is determined and clearly expressed
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:important_id.rm-2.1
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.rm-2
ref_id: IMPORTANT_ID.RM-2.1
description: "The organization shall clearly determine it\u2019s risk appetite."
annotation: Determination and expression of risk tolerance (risk appetite) should
be in line with the policies on information security and cybersecurity, to
facilitate demonstration of coherence between policies, risk tolerance and
measures.
implementation_groups:
- I
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.rm-3
assessable: false
depth: 3
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.rm
ref_id: ID.RM-3
description: "The organization\u2019s determination of risk tolerance is informed\
\ by its role in critical infrastructure and sector specific risk analysis"
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:important_id.rm-3.1
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.rm-3
ref_id: IMPORTANT_ID.RM-3.1
description: "The organization\u2019s role in critical infrastructure and its\
\ sector shall determine the organization\u2019s risk appetite."
annotation: No additional guidance on this topic.
implementation_groups:
- I
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.sc
assessable: false
depth: 2
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id
ref_id: ID.SC
name: Supply Chain Risk Management
description: "The organization\u2019s priorities, constraints, risk tolerances,\
\ and assumptions are established and used to support risk decisions associated\
\ with managing supply chain risk. The organization has established and implemented\
\ the processes to identify, assess and manage supply chain risks."
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.sc-1
assessable: false
depth: 3
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.sc
ref_id: ID.SC-1
description: Cyber supply chain risk management processes are identified, established,
assessed, managed, and agreed to by organizational stakeholders
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.sc-1.1
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.sc-1
ref_id: ID.SC-1.1
description: The organization shall document, review, approve, update when changes
occur, and implement a cyber supply chain risk management process that supports
the identification, assessment, and mitigation of the risks associated with
the distributed and interconnected nature of ICT/OT product and service supply
chains.
annotation: No additional guidance on this topic.
implementation_groups:
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.sc-2
assessable: false
depth: 3
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.sc
ref_id: ID.SC-2
description: 'Suppliers and third party partners of information systems, components,
and services are identified, prioritized, and assessed using a cyber supply
chain risk assessment process '
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:important_id.sc-2.1
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.sc-2
ref_id: IMPORTANT_ID.SC-2.1
description: "The organization shall conduct cyber supply chain risk assessments\
\ at least annually or when a change to the organization\u2019s critical systems,\
\ operational environment, or supply chain occurs; These assessments shall\
\ be documented, and the results disseminated to relevant stakeholders including\
\ those responsible for ICT/OT systems."
annotation: This assessment should identify and prioritize potential negative
impacts to the organization from the risks associated with the distributed
and interconnected nature of ICT/OT product and service supply chains.
implementation_groups:
- I
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.sc-2.2
assessable: true
depth: 4
parent_urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.sc-2
ref_id: ID.SC-2.2
description: "A documented list of all the organization\u2019s suppliers, vendors\
\ and partners who may be involved in a major incident shall be established,\
\ kept up-to-date and made available online and offline."
annotation: This list should include suppliers, vendors and partners contact
information and the services they provide, so they can be contacted for assistance
in the event of an outage or service degradation.
implementation_groups:
- E
- urn: urn:intuitem:risk:req_node:ccb-cff-2023-03-01:id.sc-3
assessable: false