@neobiotechlabs/neobiotech-dev-agent 0.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (155) hide show
  1. package/.claude-plugin/marketplace.json +22 -0
  2. package/.claude-plugin/plugin.json +58 -0
  3. package/.mcp.json +14 -0
  4. package/README.md +442 -0
  5. package/dist/__tests__/adf.test.d.ts +1 -0
  6. package/dist/__tests__/adf.test.js +68 -0
  7. package/dist/__tests__/adf.test.js.map +1 -0
  8. package/dist/__tests__/annex-ii-template.test.d.ts +1 -0
  9. package/dist/__tests__/annex-ii-template.test.js +39 -0
  10. package/dist/__tests__/annex-ii-template.test.js.map +1 -0
  11. package/dist/__tests__/doc-render.test.d.ts +1 -0
  12. package/dist/__tests__/doc-render.test.js +93 -0
  13. package/dist/__tests__/doc-render.test.js.map +1 -0
  14. package/dist/__tests__/help.test.d.ts +1 -0
  15. package/dist/__tests__/help.test.js +31 -0
  16. package/dist/__tests__/help.test.js.map +1 -0
  17. package/dist/__tests__/jira-fields.test.d.ts +1 -0
  18. package/dist/__tests__/jira-fields.test.js +81 -0
  19. package/dist/__tests__/jira-fields.test.js.map +1 -0
  20. package/dist/__tests__/plugin-manifest.test.d.ts +1 -0
  21. package/dist/__tests__/plugin-manifest.test.js +91 -0
  22. package/dist/__tests__/plugin-manifest.test.js.map +1 -0
  23. package/dist/__tests__/setup.test.d.ts +1 -0
  24. package/dist/__tests__/setup.test.js +7 -0
  25. package/dist/__tests__/setup.test.js.map +1 -0
  26. package/dist/__tests__/sync-version.test.d.ts +1 -0
  27. package/dist/__tests__/sync-version.test.js +37 -0
  28. package/dist/__tests__/sync-version.test.js.map +1 -0
  29. package/dist/clients/risk-client.d.ts +17 -0
  30. package/dist/clients/risk-client.js +54 -0
  31. package/dist/clients/risk-client.js.map +1 -0
  32. package/dist/clients/xray-client.d.ts +34 -0
  33. package/dist/clients/xray-client.js +127 -0
  34. package/dist/clients/xray-client.js.map +1 -0
  35. package/dist/config/project-config.d.ts +14 -0
  36. package/dist/config/project-config.js +45 -0
  37. package/dist/config/project-config.js.map +1 -0
  38. package/dist/confluence-client.d.ts +16 -0
  39. package/dist/confluence-client.js +97 -0
  40. package/dist/confluence-client.js.map +1 -0
  41. package/dist/index.d.ts +2 -0
  42. package/dist/index.js +60 -0
  43. package/dist/index.js.map +1 -0
  44. package/dist/jira-client.d.ts +35 -0
  45. package/dist/jira-client.js +119 -0
  46. package/dist/jira-client.js.map +1 -0
  47. package/dist/tools/annex-ii-template.d.ts +30 -0
  48. package/dist/tools/annex-ii-template.js +129 -0
  49. package/dist/tools/annex-ii-template.js.map +1 -0
  50. package/dist/tools/confluence.d.ts +2 -0
  51. package/dist/tools/confluence.js +54 -0
  52. package/dist/tools/confluence.js.map +1 -0
  53. package/dist/tools/cvss.d.ts +2 -0
  54. package/dist/tools/cvss.js +59 -0
  55. package/dist/tools/cvss.js.map +1 -0
  56. package/dist/tools/doc-render.d.ts +2 -0
  57. package/dist/tools/doc-render.js +96 -0
  58. package/dist/tools/doc-render.js.map +1 -0
  59. package/dist/tools/doc-validation.d.ts +2 -0
  60. package/dist/tools/doc-validation.js +221 -0
  61. package/dist/tools/doc-validation.js.map +1 -0
  62. package/dist/tools/help-data.d.ts +7 -0
  63. package/dist/tools/help-data.js +144 -0
  64. package/dist/tools/help-data.js.map +1 -0
  65. package/dist/tools/help.d.ts +2 -0
  66. package/dist/tools/help.js +39 -0
  67. package/dist/tools/help.js.map +1 -0
  68. package/dist/tools/iec.d.ts +2 -0
  69. package/dist/tools/iec.js +203 -0
  70. package/dist/tools/iec.js.map +1 -0
  71. package/dist/tools/init.d.ts +2 -0
  72. package/dist/tools/init.js +38 -0
  73. package/dist/tools/init.js.map +1 -0
  74. package/dist/tools/jira-crud.d.ts +2 -0
  75. package/dist/tools/jira-crud.js +142 -0
  76. package/dist/tools/jira-crud.js.map +1 -0
  77. package/dist/tools/risk.d.ts +2 -0
  78. package/dist/tools/risk.js +172 -0
  79. package/dist/tools/risk.js.map +1 -0
  80. package/dist/tools/traceability.d.ts +2 -0
  81. package/dist/tools/traceability.js +85 -0
  82. package/dist/tools/traceability.js.map +1 -0
  83. package/dist/tools/types.d.ts +13 -0
  84. package/dist/tools/types.js +2 -0
  85. package/dist/tools/types.js.map +1 -0
  86. package/dist/tools/usability.d.ts +2 -0
  87. package/dist/tools/usability.js +149 -0
  88. package/dist/tools/usability.js.map +1 -0
  89. package/dist/tools/xray.d.ts +2 -0
  90. package/dist/tools/xray.js +35 -0
  91. package/dist/tools/xray.js.map +1 -0
  92. package/dist/utils/adf.d.ts +27 -0
  93. package/dist/utils/adf.js +104 -0
  94. package/dist/utils/adf.js.map +1 -0
  95. package/dist/utils/cvss.d.ts +15 -0
  96. package/dist/utils/cvss.js +86 -0
  97. package/dist/utils/cvss.js.map +1 -0
  98. package/dist/utils/doc-render.d.ts +28 -0
  99. package/dist/utils/doc-render.js +50 -0
  100. package/dist/utils/doc-render.js.map +1 -0
  101. package/dist/utils/jira-fields.d.ts +38 -0
  102. package/dist/utils/jira-fields.js +53 -0
  103. package/dist/utils/jira-fields.js.map +1 -0
  104. package/dist/utils/sync-version.d.ts +2 -0
  105. package/dist/utils/sync-version.js +20 -0
  106. package/dist/utils/sync-version.js.map +1 -0
  107. package/package.json +49 -0
  108. package/skills/doc-render/SKILL.md +79 -0
  109. package/vendor/dev-docs-templates/templates/dev_docs/plan_template.md +104 -0
  110. package/vendor/dev-docs-templates/templates/dev_docs/prd_template.md +110 -0
  111. package/vendor/dev-docs-templates/templates/dev_docs/spec_template.md +81 -0
  112. package/vendor/dev-docs-templates/templates/dev_docs/tasks_template.md +122 -0
  113. package/vendor/dev-docs-templates/templates/mdr_docs/CA/checklist-clinical-evaluation.md +81 -0
  114. package/vendor/dev-docs-templates/templates/mdr_docs/CA/checklist-gspr-mdr.md +403 -0
  115. package/vendor/dev-docs-templates/templates/mdr_docs/CA/clinical-evaluation-report.md +492 -0
  116. package/vendor/dev-docs-templates/templates/mdr_docs/CA/instructions-for-use.md +132 -0
  117. package/vendor/dev-docs-templates/templates/mdr_docs/CA/literature-evaluation-table.md +15 -0
  118. package/vendor/dev-docs-templates/templates/mdr_docs/CA/mdr-declaration-of-conformity.md +75 -0
  119. package/vendor/dev-docs-templates/templates/mdr_docs/CA/post-market-clinical-follow-up-plan.md +162 -0
  120. package/vendor/dev-docs-templates/templates/mdr_docs/CA/post-market-surveillance-plan.md +175 -0
  121. package/vendor/dev-docs-templates/templates/mdr_docs/CA/risk-management-cybersecurity-checklist.md +67 -0
  122. package/vendor/dev-docs-templates/templates/mdr_docs/CA/risk-management-report.md +111 -0
  123. package/vendor/dev-docs-templates/templates/mdr_docs/CA/usability-evaluation-report.md +70 -0
  124. package/vendor/dev-docs-templates/templates/mdr_docs/EA/clinical-evaluation-plan.md +154 -0
  125. package/vendor/dev-docs-templates/templates/mdr_docs/EA/list-of-hazard-related-use-scenarios.md +34 -0
  126. package/vendor/dev-docs-templates/templates/mdr_docs/EA/risk-table-fmea.md +155 -0
  127. package/vendor/dev-docs-templates/templates/mdr_docs/EA/software-architecture-description.md +307 -0
  128. package/vendor/dev-docs-templates/templates/mdr_docs/EA/software-requirements-list.md +156 -0
  129. package/vendor/dev-docs-templates/templates/mdr_docs/EA/soup-list.md +82 -0
  130. package/vendor/dev-docs-templates/templates/mdr_docs/EA/usability-evaluation-plan.md +103 -0
  131. package/vendor/dev-docs-templates/templates/mdr_docs/ER/global/bug-fixes-documentation-list.md +35 -0
  132. package/vendor/dev-docs-templates/templates/mdr_docs/ER/global/change-evaluation-list.md +100 -0
  133. package/vendor/dev-docs-templates/templates/mdr_docs/ER/global/list-of-known-anomalies.md +29 -0
  134. package/vendor/dev-docs-templates/templates/mdr_docs/ER/sprint/algorithm-validation-report.md +170 -0
  135. package/vendor/dev-docs-templates/templates/mdr_docs/ER/sprint/checklist-software-release.md +52 -0
  136. package/vendor/dev-docs-templates/templates/mdr_docs/ER/sprint/checklist-software-requirements-review.md +50 -0
  137. package/vendor/dev-docs-templates/templates/mdr_docs/ER/sprint/software-architecture-checklist.md +41 -0
  138. package/vendor/dev-docs-templates/templates/mdr_docs/ER/sprint/software-detailed-design.md +321 -0
  139. package/vendor/dev-docs-templates/templates/mdr_docs/ER/sprint/software-system-test-plan.md +155 -0
  140. package/vendor/dev-docs-templates/templates/mdr_docs/ER/sprint/usability-evaluation-protocol.md +63 -0
  141. package/vendor/dev-docs-templates/templates/mdr_docs/PA/intended-use.md +116 -0
  142. package/vendor/dev-docs-templates/templates/mdr_docs/PA/mdr-classification-document.md +114 -0
  143. package/vendor/dev-docs-templates/templates/mdr_docs/PA/risk-management-plan.md +198 -0
  144. package/vendor/dev-docs-templates/templates/mdr_docs/PA/software-development-maintenance-plan.md +225 -0
  145. package/vendor/dev-docs-templates/templates/mdr_docs/PA/system-requirements-spec.md +182 -0
  146. package/vendor/dev-docs-templates/templates/mdr_docs/global/information_security/information-security-controls.md +966 -0
  147. package/vendor/dev-docs-templates/templates/mdr_docs/global/information_security/information-security-policy-and-scope.md +99 -0
  148. package/vendor/dev-docs-templates/templates/mdr_docs/global/qms/quality-manual-policy-objectives.md +187 -0
  149. package/vendor/dev-docs-templates/templates/mdr_docs/global/qms/sop-capa.md +112 -0
  150. package/vendor/dev-docs-templates/templates/mdr_docs/global/qms/sop-change-management.md +128 -0
  151. package/vendor/dev-docs-templates/templates/mdr_docs/global/qms/sop-clinical-evaluation.md +102 -0
  152. package/vendor/dev-docs-templates/templates/mdr_docs/global/qms/sop-feedback-management.md +140 -0
  153. package/vendor/dev-docs-templates/templates/mdr_docs/global/qms/sop-integrated-software-development.md +361 -0
  154. package/vendor/dev-docs-templates/templates/mdr_docs/global/qms/sop-post-market-surveillance.md +159 -0
  155. package/vendor/dev-docs-templates/templates/mdr_docs/global/qms/sop-software-problem-resolution.md +99 -0
@@ -0,0 +1,966 @@
1
+ # Information Security Controls
2
+
3
+ | ISO 27001:2023 Section | Document Section |
4
+ |-------------------------------------------------------------|------------------|
5
+ | 6.1.3 | (All) |
6
+ | Annex A (normative) Information security controls reference | (All) |
7
+
8
+ ## Summary
9
+
10
+ This document lists the information security controls as specified in Annex A of ISO/IEC 27001:2023. These
11
+ controls are intended to support the implementation of the Information Security Management System (ISMS)
12
+ within *\<your company name\>* and to address information security risks tailored to the needs of the
13
+ organization.
14
+
15
+ ## Overview Over Information Security Controls
16
+
17
+ The following table summarizes the controls from Annex A that are applicable to the ISMS. These controls are
18
+ grouped by categories as defined in the standard. For more details on each security control, see the
19
+ implementation section below this overview table.
20
+
21
+ > Note that you don't have to comply with all controls listed below. Here's what you do instead: For each
22
+ > control, mark it as applicable (yes or no). If you selected "yes", then add some notes on how you
23
+ > implemented it in the sections below this table (scroll down). If you selected "no", add a comment in the
24
+ > "Comment" column on why it's not applicable, and in the "In Compliance?" column, select "n/a".
25
+
26
+ | Section | Control Category | Control Title | Applicable? | In Compliance? | Comment |
27
+ |---------|------------------|-------------------------------------------------------------------------|-------------|----------------|---------|
28
+ | 5.1 | Organizational | Policies for information security | yes / no | yes / no / n/a | |
29
+ | 5.2 | Organizational | Information security roles and responsibilities | | | |
30
+ | 5.3 | Organizational | Segregation of duties | | | |
31
+ | 5.4 | Organizational | Management responsibilities | | | |
32
+ | 5.5 | Organizational | Contact with authorities | | | |
33
+ | 5.6 | Organizational | Contact with special interest groups | | | |
34
+ | 5.7 | Organizational | Threat intelligence | | | |
35
+ | 5.8 | Organizational | Information security in project management | | | |
36
+ | 5.9 | Organizational | Inventory of information and other associated assets | | | |
37
+ | 5.10 | Organizational | Acceptable use of information and other associated assets | | | |
38
+ | 5.11 | Organizational | Return of assets | | | |
39
+ | 5.12 | Organizational | Classification of information | | | |
40
+ | 5.13 | Organizational | Labelling of information | | | |
41
+ | 5.14 | Organizational | Information transfer | | | |
42
+ | 5.15 | Organizational | Access control | | | |
43
+ | 5.16 | Organizational | Identity management | | | |
44
+ | 5.17 | Organizational | Authentication information | | | |
45
+ | 5.18 | Organizational | Access rights | | | |
46
+ | 5.19 | Organizational | Information security in supplier relationships | | | |
47
+ | 5.20 | Organizational | Addressing information security within supplier agreements | | | |
48
+ | 5.21 | Organizational | Managing information security in the ICT supply chain | | | |
49
+ | 5.22 | Organizational | Monitoring, review, and change management of supplier services | | | |
50
+ | 5.23 | Organizational | Information security for use of cloud services | | | |
51
+ | 5.24 | Organizational | Information security incident management planning and preparation | | | |
52
+ | 5.25 | Organizational | Assessment and decision on information security events | | | |
53
+ | 5.26 | Organizational | Response to information security incidents | | | |
54
+ | 5.27 | Organizational | Learning from information security incidents | | | |
55
+ | 5.28 | Organizational | Collection of evidence | | | |
56
+ | 5.29 | Organizational | Information security during disruption | | | |
57
+ | 5.30 | Organizational | ICT readiness for business continuity | | | |
58
+ | 5.31 | Organizational | Legal, statutory, regulatory, and contractual requirements | | | |
59
+ | 5.32 | Organizational | Intellectual property rights | | | |
60
+ | 5.33 | Organizational | Protection of records | | | |
61
+ | 5.34 | Organizational | Privacy and protection of personal identifiable information (PII) | | | |
62
+ | 5.35 | Organizational | Independent review of information security | | | |
63
+ | 5.36 | Organizational | Compliance with policies, rules, and standards for information security | | | |
64
+ | 5.37 | Organizational | Documented operating procedures | | | |
65
+ | 6.1 | People | Background verification checks | | | |
66
+ | 6.2 | People | Terms and conditions of employment | | | |
67
+ | 6.3 | People | Information security awareness, education, and training | | | |
68
+ | 6.4 | People | Disciplinary process | | | |
69
+ | 6.5 | People | Responsibilities after termination or change of employment | | | |
70
+ | 6.6 | People | Confidentiality or non-disclosure agreements | | | |
71
+ | 6.7 | People | Remote working | | | |
72
+ | 6.8 | People | Information security event reporting | | | |
73
+ | 7.1 | Physical | Physical security perimeters | | | |
74
+ | 7.2 | Physical | Physical entry | | | |
75
+ | 7.3 | Physical | Securing offices, rooms, and facilities | | | |
76
+ | 7.4 | Physical | Physical security monitoring | | | |
77
+ | 7.5 | Physical | Protecting against physical and environmental threats | | | |
78
+ | 7.6 | Physical | Working in secure areas | | | |
79
+ | 7.7 | Physical | Clear desk and clear screen | | | |
80
+ | 7.8 | Physical | Equipment siting and protection | | | |
81
+ | 7.9 | Physical | Security of assets off-premises | | | |
82
+ | 7.10 | Physical | Storage media | | | |
83
+ | 7.11 | Physical | Supporting utilities | | | |
84
+ | 7.12 | Physical | Cabling security | | | |
85
+ | 7.13 | Physical | Equipment maintenance | | | |
86
+ | 7.14 | Physical | Secure disposal or re-use of equipment | | | |
87
+ | 8.1 | Technological | User end point devices | | | |
88
+ | 8.2 | Technological | Privileged access rights | | | |
89
+ | 8.3 | Technological | Information access restriction | | | |
90
+ | 8.4 | Technological | Access to source code | | | |
91
+ | 8.5 | Technological | Secure authentication | | | |
92
+ | 8.6 | Technological | Capacity management | | | |
93
+ | 8.7 | Technological | Protection against malware | | | |
94
+ | 8.8 | Technological | Management of technical vulnerabilities | | | |
95
+ | 8.9 | Technological | Configuration management | | | |
96
+ | 8.10 | Technological | Information deletion | | | |
97
+ | 8.11 | Technological | Data masking | | | |
98
+ | 8.12 | Technological | Data leakage prevention | | | |
99
+ | 8.13 | Technological | Information backup | | | |
100
+ | 8.14 | Technological | Redundancy of information processing facilities | | | |
101
+ | 8.15 | Technological | Logging | | | |
102
+ | 8.16 | Technological | Monitoring activities | | | |
103
+ | 8.17 | Technological | Clock synchronization | | | |
104
+ | 8.18 | Technological | Use of privileged utility programs | | | |
105
+ | 8.19 | Technological | Installation of software on operational systems | | | |
106
+ | 8.20 | Technological | Networks security | | | |
107
+ | 8.21 | Technological | Security of network services | | | |
108
+ | 8.22 | Technological | Segregation of networks | | | |
109
+ | 8.23 | Technological | Web filtering | | | |
110
+ | 8.24 | Technological | Use of cryptography | | | |
111
+ | 8.25 | Technological | Secure development life cycle | | | |
112
+ | 8.26 | Technological | Application security requirements | | | |
113
+ | 8.27 | Technological | Secure system architecture and engineering principles | | | |
114
+ | 8.28 | Technological | Secure coding | | | |
115
+ | 8.29 | Technological | Security testing in development and acceptance | | | |
116
+ | 8.30 | Technological | Outsourced development | | | |
117
+ | 8.31 | Technological | Separation of development, test and production environments | | | |
118
+ | 8.32 | Technological | Change management | | | |
119
+ | 8.33 | Technological | Test information | | | |
120
+ | 8.34 | Technological | Protection of information systems during audit testing | | | |
121
+
122
+ ## Implementation Of Information Security Controls
123
+
124
+ ### 5.1 Policies for information security
125
+
126
+ * **Assessment:** \<enter the current state at your company\>
127
+ * **Plan:** \<describe your plan\>
128
+ * **Implementation:**
129
+ * \<measure 1\>
130
+ * \<measure 2\>
131
+ * **Monitoring and review:** \<describe what you'll do\>
132
+
133
+ ### 5.2 Information security roles and responsibilities
134
+
135
+ * **Assessment:** \<enter the current state at your company\>
136
+ * **Plan:** \<describe your plan\>
137
+ * **Implementation:**
138
+ * \<measure 1\>
139
+ * \<measure 2\>
140
+ * **Monitoring and review:** \<describe what you'll do\>
141
+
142
+ ### 5.3 Segregation of duties
143
+
144
+ * **Assessment:** \<enter the current state at your company\>
145
+ * **Plan:** \<describe your plan\>
146
+ * **Implementation:**
147
+ * \<measure 1\>
148
+ * \<measure 2\>
149
+ * **Monitoring and review:** \<describe what you'll do\>
150
+
151
+ ### 5.4 Management responsibilities
152
+
153
+ * **Assessment:** \<enter the current state at your company\>
154
+ * **Plan:** \<describe your plan\>
155
+ * **Implementation:**
156
+ * \<measure 1\>
157
+ * \<measure 2\>
158
+ * **Monitoring and review:** \<describe what you'll do\>
159
+
160
+ ### 5.5 Contact with authorities
161
+
162
+ * **Assessment:** \<enter the current state at your company\>
163
+ * **Plan:** \<describe your plan\>
164
+ * **Implementation:**
165
+ * \<measure 1\>
166
+ * \<measure 2\>
167
+ * **Monitoring and review:** \<describe what you'll do\>
168
+
169
+ ### 5.6 Contact with special interest groups
170
+
171
+ * **Assessment:** \<enter the current state at your company\>
172
+ * **Plan:** \<describe your plan\>
173
+ * **Implementation:**
174
+ * \<measure 1\>
175
+ * \<measure 2\>
176
+ * **Monitoring and review:** \<describe what you'll do\>
177
+
178
+ ### 5.7 Threat intelligence
179
+
180
+ * **Assessment:** \<enter the current state at your company\>
181
+ * **Plan:** \<describe your plan\>
182
+ * **Implementation:**
183
+ * \<measure 1\>
184
+ * \<measure 2\>
185
+ * **Monitoring and review:** \<describe what you'll do\>
186
+
187
+ ### 5.8 Information security in project management
188
+
189
+ * **Assessment:** \<enter the current state at your company\>
190
+ * **Plan:** \<describe your plan\>
191
+ * **Implementation:**
192
+ * \<measure 1\>
193
+ * \<measure 2\>
194
+ * **Monitoring and review:** \<describe what you'll do\>
195
+
196
+ ### 5.9 Inventory of information and other associated assets
197
+
198
+ * **Assessment:** \<enter the current state at your company\>
199
+ * **Plan:** \<describe your plan\>
200
+ * **Implementation:**
201
+ * \<measure 1\>
202
+ * \<measure 2\>
203
+ * **Monitoring and review:** \<describe what you'll do\>
204
+
205
+ ### 5.10 Acceptable use of information and other associated assets
206
+
207
+ * **Assessment:** \<enter the current state at your company\>
208
+ * **Plan:** \<describe your plan\>
209
+ * **Implementation:**
210
+ * \<measure 1\>
211
+ * \<measure 2\>
212
+ * **Monitoring and review:** \<describe what you'll do\>
213
+
214
+ ### 5.11 Return of assets
215
+
216
+ * **Assessment:** \<enter the current state at your company\>
217
+ * **Plan:** \<describe your plan\>
218
+ * **Implementation:**
219
+ * \<measure 1\>
220
+ * \<measure 2\>
221
+ * **Monitoring and review:** \<describe what you'll do\>
222
+
223
+ ### 5.12 Classification of information
224
+
225
+ * **Assessment:** \<enter the current state at your company\>
226
+ * **Plan:** \<describe your plan\>
227
+ * **Implementation:**
228
+ * \<measure 1\>
229
+ * \<measure 2\>
230
+ * **Monitoring and review:** \<describe what you'll do\>
231
+
232
+ ### 5.13 Labelling of information
233
+
234
+ * **Assessment:** \<enter the current state at your company\>
235
+ * **Plan:** \<describe your plan\>
236
+ * **Implementation:**
237
+ * \<measure 1\>
238
+ * \<measure 2\>
239
+ * **Monitoring and review:** \<describe what you'll do\>
240
+
241
+ ### 5.14 Information transfer
242
+
243
+ * **Assessment:** \<enter the current state at your company\>
244
+ * **Plan:** \<describe your plan\>
245
+ * **Implementation:**
246
+ * \<measure 1\>
247
+ * \<measure 2\>
248
+ * **Monitoring and review:** \<describe what you'll do\>
249
+
250
+ ### 5.15 Access control
251
+
252
+ * **Assessment:** \<enter the current state at your company\>
253
+ * **Plan:** \<describe your plan\>
254
+ * **Implementation:**
255
+ * \<measure 1\>
256
+ * \<measure 2\>
257
+ * **Monitoring and review:** \<describe what you'll do\>
258
+
259
+ ### 5.16 Identity management
260
+
261
+ * **Assessment:** \<enter the current state at your company\>
262
+ * **Plan:** \<describe your plan\>
263
+ * **Implementation:**
264
+ * \<measure 1\>
265
+ * \<measure 2\>
266
+ * **Monitoring and review:** \<describe what you'll do\>
267
+
268
+ ### 5.17 Authentication information
269
+
270
+ * **Assessment:** \<enter the current state at your company\>
271
+ * **Plan:** \<describe your plan\>
272
+ * **Implementation:**
273
+ * \<measure 1\>
274
+ * \<measure 2\>
275
+ * **Monitoring and review:** \<describe what you'll do\>
276
+
277
+ ### 5.18 Access rights
278
+
279
+ * **Assessment:** \<enter the current state at your company\>
280
+ * **Plan:** \<describe your plan\>
281
+ * **Implementation:**
282
+ * \<measure 1\>
283
+ * \<measure 2\>
284
+ * **Monitoring and review:** \<describe what you'll do\>
285
+
286
+ ### 5.19 Information security in supplier relationships
287
+
288
+ * **Assessment:** \<enter the current state at your company\>
289
+ * **Plan:** \<describe your plan\>
290
+ * **Implementation:**
291
+ * \<measure 1\>
292
+ * \<measure 2\>
293
+ * **Monitoring and review:** \<describe what you'll do\>
294
+
295
+ ### 5.20 Addressing information security within supplier agreements
296
+
297
+ * **Assessment:** \<enter the current state at your company\>
298
+ * **Plan:** \<describe your plan\>
299
+ * **Implementation:**
300
+ * \<measure 1\>
301
+ * \<measure 2\>
302
+ * **Monitoring and review:** \<describe what you'll do\>
303
+
304
+ ### 5.21 Managing information security in the ICT supply chain
305
+
306
+ * **Assessment:** \<enter the current state at your company\>
307
+ * **Plan:** \<describe your plan\>
308
+ * **Implementation:**
309
+ * \<measure 1\>
310
+ * \<measure 2\>
311
+ * **Monitoring and review:** \<describe what you'll do\>
312
+
313
+ ### 5.22 Monitoring, review, and change management of supplier services
314
+
315
+ * **Assessment:** \<enter the current state at your company\>
316
+ * **Plan:** \<describe your plan\>
317
+ * **Implementation:**
318
+ * \<measure 1\>
319
+ * \<measure 2\>
320
+ * **Monitoring and review:** \<describe what you'll do\>
321
+
322
+ ### 5.23 Information security for use of cloud services
323
+
324
+ * **Assessment:** \<enter the current state at your company\>
325
+ * **Plan:** \<describe your plan\>
326
+ * **Implementation:**
327
+ * \<measure 1\>
328
+ * \<measure 2\>
329
+ * **Monitoring and review:** \<describe what you'll do\>
330
+
331
+ ### 5.24 Information security incident management planning and preparation
332
+
333
+ * **Assessment:** \<enter the current state at your company\>
334
+ * **Plan:** \<describe your plan\>
335
+ * **Implementation:**
336
+ * \<measure 1\>
337
+ * \<measure 2\>
338
+ * **Monitoring and review:** \<describe what you'll do\>
339
+
340
+ ### 5.25 Assessment and decision on information security events
341
+
342
+ * **Assessment:** \<enter the current state at your company\>
343
+ * **Plan:** \<describe your plan\>
344
+ * **Implementation:**
345
+ * \<measure 1\>
346
+ * \<measure 2\>
347
+ * **Monitoring and review:** \<describe what you'll do\>
348
+
349
+ ### 5.26 Response to information security incidents
350
+
351
+ * **Assessment:** \<enter the current state at your company\>
352
+ * **Plan:** \<describe your plan\>
353
+ * **Implementation:**
354
+ * \<measure 1\>
355
+ * \<measure 2\>
356
+ * **Monitoring and review:** \<describe what you'll do\>
357
+
358
+ ### 5.27 Learning from information security incidents
359
+
360
+ * **Assessment:** \<enter the current state at your company\>
361
+ * **Plan:** \<describe your plan\>
362
+ * **Implementation:**
363
+ * \<measure 1\>
364
+ * \<measure 2\>
365
+ * **Monitoring and review:** \<describe what you'll do\>
366
+
367
+ ### 5.28 Collection of evidence
368
+
369
+ * **Assessment:** \<enter the current state at your company\>
370
+ * **Plan:** \<describe your plan\>
371
+ * **Implementation:**
372
+ * \<measure 1\>
373
+ * \<measure 2\>
374
+ * **Monitoring and review:** \<describe what you'll do\>
375
+
376
+ ### 5.29 Information security during disruption
377
+
378
+ * **Assessment:** \<enter the current state at your company\>
379
+ * **Plan:** \<describe your plan\>
380
+ * **Implementation:**
381
+ * \<measure 1\>
382
+ * \<measure 2\>
383
+ * **Monitoring and review:** \<describe what you'll do\>
384
+
385
+ ### 5.30 ICT readiness for business continuity
386
+
387
+ * **Assessment:** \<enter the current state at your company\>
388
+ * **Plan:** \<describe your plan\>
389
+ * **Implementation:**
390
+ * \<measure 1\>
391
+ * \<measure 2\>
392
+ * **Monitoring and review:** \<describe what you'll do\>
393
+
394
+ ### 5.31 Legal, statutory, regulatory, and contractual requirements
395
+
396
+ * **Assessment:** \<enter the current state at your company\>
397
+ * **Plan:** \<describe your plan\>
398
+ * **Implementation:**
399
+ * \<measure 1\>
400
+ * \<measure 2\>
401
+ * **Monitoring and review:** \<describe what you'll do\>
402
+
403
+ ### 5.32 Intellectual property rights
404
+
405
+ * **Assessment:** \<enter the current state at your company\>
406
+ * **Plan:** \<describe your plan\>
407
+ * **Implementation:**
408
+ * \<measure 1\>
409
+ * \<measure 2\>
410
+ * **Monitoring and review:** \<describe what you'll do\>
411
+
412
+ ### 5.33 Protection of records
413
+
414
+ * **Assessment:** \<enter the current state at your company\>
415
+ * **Plan:** \<describe your plan\>
416
+ * **Implementation:**
417
+ * \<measure 1\>
418
+ * \<measure 2\>
419
+ * **Monitoring and review:** \<describe what you'll do\>
420
+
421
+ ### 5.34 Privacy and protection of personal identifiable information (PII)
422
+
423
+ * **Assessment:** \<enter the current state at your company\>
424
+ * **Plan:** \<describe your plan\>
425
+ * **Implementation:**
426
+ * \<measure 1\>
427
+ * \<measure 2\>
428
+ * **Monitoring and review:** \<describe what you'll do\>
429
+
430
+ ### 5.35 Independent review of information security
431
+
432
+ * **Assessment:** \<enter the current state at your company\>
433
+ * **Plan:** \<describe your plan\>
434
+ * **Implementation:**
435
+ * \<measure 1\>
436
+ * \<measure 2\>
437
+ * **Monitoring and review:** \<describe what you'll do\>
438
+
439
+ ### 5.36 Compliance with policies, rules, and standards for information security
440
+
441
+ * **Assessment:** \<enter the current state at your company\>
442
+ * **Plan:** \<describe your plan\>
443
+ * **Implementation:**
444
+ * \<measure 1\>
445
+ * \<measure 2\>
446
+ * **Monitoring and review:** \<describe what you'll do\>
447
+
448
+ ### 5.37 Documented operating procedures
449
+
450
+ * **Assessment:** \<enter the current state at your company\>
451
+ * **Plan:** \<describe your plan\>
452
+ * **Implementation:**
453
+ * \<measure 1\>
454
+ * \<measure 2\>
455
+ * **Monitoring and review:** \<describe what you'll do\>
456
+
457
+ ### 6.1 Background verification checks
458
+
459
+ * **Assessment:** \<enter the current state at your company\>
460
+ * **Plan:** \<describe your plan\>
461
+ * **Implementation:**
462
+ * \<measure 1\>
463
+ * \<measure 2\>
464
+ * **Monitoring and review:** \<describe what you'll do\>
465
+
466
+ ### 6.2 Terms and conditions of employment
467
+
468
+ * **Assessment:** \<enter the current state at your company\>
469
+ * **Plan:** \<describe your plan\>
470
+ * **Implementation:**
471
+ * \<measure 1\>
472
+ * \<measure 2\>
473
+ * **Monitoring and review:** \<describe what you'll do\>
474
+
475
+ ### 6.3 Information security awareness, education, and training
476
+
477
+ * **Assessment:** \<enter the current state at your company\>
478
+ * **Plan:** \<describe your plan\>
479
+ * **Implementation:**
480
+ * \<measure 1\>
481
+ * \<measure 2\>
482
+ * **Monitoring and review:** \<describe what you'll do\>
483
+
484
+ ### 6.4 Disciplinary process
485
+
486
+ * **Assessment:** \<enter the current state at your company\>
487
+ * **Plan:** \<describe your plan\>
488
+ * **Implementation:**
489
+ * \<measure 1\>
490
+ * \<measure 2\>
491
+ * **Monitoring and review:** \<describe what you'll do\>
492
+
493
+ ### 6.5 Responsibilities after termination or change of employment
494
+
495
+ * **Assessment:** \<enter the current state at your company\>
496
+ * **Plan:** \<describe your plan\>
497
+ * **Implementation:**
498
+ * \<measure 1\>
499
+ * \<measure 2\>
500
+ * **Monitoring and review:** \<describe what you'll do\>
501
+
502
+ ### 6.6 Confidentiality or non-disclosure agreements
503
+
504
+ * **Assessment:** \<enter the current state at your company\>
505
+ * **Plan:** \<describe your plan\>
506
+ * **Implementation:**
507
+ * \<measure 1\>
508
+ * \<measure 2\>
509
+ * **Monitoring and review:** \<describe what you'll do\>
510
+
511
+ ### 6.7 Remote working
512
+
513
+ * **Assessment:** \<enter the current state at your company\>
514
+ * **Plan:** \<describe your plan\>
515
+ * **Implementation:**
516
+ * \<measure 1\>
517
+ * \<measure 2\>
518
+ * **Monitoring and review:** \<describe what you'll do\>
519
+
520
+ ### 6.8 Information security event reporting
521
+
522
+ * **Assessment:** \<enter the current state at your company\>
523
+ * **Plan:** \<describe your plan\>
524
+ * **Implementation:**
525
+ * \<measure 1\>
526
+ * \<measure 2\>
527
+ * **Monitoring and review:** \<describe what you'll do\>
528
+
529
+ ### 7.1 Physical security perimeters
530
+
531
+ * **Assessment:** \<enter the current state at your company\>
532
+ * **Plan:** \<describe your plan\>
533
+ * **Implementation:**
534
+ * \<measure 1\>
535
+ * \<measure 2\>
536
+ * **Monitoring and review:** \<describe what you'll do\>
537
+
538
+ ### 7.2 Physical entry
539
+
540
+ * **Assessment:** \<enter the current state at your company\>
541
+ * **Plan:** \<describe your plan\>
542
+ * **Implementation:**
543
+ * \<measure 1\>
544
+ * \<measure 2\>
545
+ * **Monitoring and review:** \<describe what you'll do\>
546
+
547
+ ### 7.3 Securing offices, rooms, and facilities
548
+
549
+ * **Assessment:** \<enter the current state at your company\>
550
+ * **Plan:** \<describe your plan\>
551
+ * **Implementation:**
552
+ * \<measure 1\>
553
+ * \<measure 2\>
554
+ * **Monitoring and review:** \<describe what you'll do\>
555
+
556
+ ### 7.4 Physical security monitoring
557
+
558
+ * **Assessment:** \<enter the current state at your company\>
559
+ * **Plan:** \<describe your plan\>
560
+ * **Implementation:**
561
+ * \<measure 1\>
562
+ * \<measure 2\>
563
+ * **Monitoring and review:** \<describe what you'll do\>
564
+
565
+ ### 7.5 Protecting against physical and environmental threats
566
+
567
+ * **Assessment:** \<enter the current state at your company\>
568
+ * **Plan:** \<describe your plan\>
569
+ * **Implementation:**
570
+ * \<measure 1\>
571
+ * \<measure 2\>
572
+ * **Monitoring and review:** \<describe what you'll do\>
573
+
574
+ ### 7.6 Working in secure areas
575
+
576
+ * **Assessment:** \<enter the current state at your company\>
577
+ * **Plan:** \<describe your plan\>
578
+ * **Implementation:**
579
+ * \<measure 1\>
580
+ * \<measure 2\>
581
+ * **Monitoring and review:** \<describe what you'll do\>
582
+
583
+ ### 7.7 Clear desk and clear screen
584
+
585
+ * **Assessment:** \<enter the current state at your company\>
586
+ * **Plan:** \<describe your plan\>
587
+ * **Implementation:**
588
+ * \<measure 1\>
589
+ * \<measure 2\>
590
+ * **Monitoring and review:** \<describe what you'll do\>
591
+
592
+ ### 7.8 Equipment siting and protection
593
+
594
+ * **Assessment:** \<enter the current state at your company\>
595
+ * **Plan:** \<describe your plan\>
596
+ * **Implementation:**
597
+ * \<measure 1\>
598
+ * \<measure 2\>
599
+ * **Monitoring and review:** \<describe what you'll do\>
600
+
601
+ ### 7.9 Security of assets off-premises
602
+
603
+ * **Assessment:** \<enter the current state at your company\>
604
+ * **Plan:** \<describe your plan\>
605
+ * **Implementation:**
606
+ * \<measure 1\>
607
+ * \<measure 2\>
608
+ * **Monitoring and review:** \<describe what you'll do\>
609
+
610
+ ### 7.10 Storage media
611
+
612
+ * **Assessment:** \<enter the current state at your company\>
613
+ * **Plan:** \<describe your plan\>
614
+ * **Implementation:**
615
+ * \<measure 1\>
616
+ * \<measure 2\>
617
+ * **Monitoring and review:** \<describe what you'll do\>
618
+
619
+ ### 7.11 Supporting utilities
620
+
621
+ * **Assessment:** \<enter the current state at your company\>
622
+ * **Plan:** \<describe your plan\>
623
+ * **Implementation:**
624
+ * \<measure 1\>
625
+ * \<measure 2\>
626
+ * **Monitoring and review:** \<describe what you'll do\>
627
+
628
+ ### 7.12 Cabling security
629
+
630
+ * **Assessment:** \<enter the current state at your company\>
631
+ * **Plan:** \<describe your plan\>
632
+ * **Implementation:**
633
+ * \<measure 1\>
634
+ * \<measure 2\>
635
+ * **Monitoring and review:** \<describe what you'll do\>
636
+
637
+ ### 7.13 Equipment maintenance
638
+
639
+ * **Assessment:** \<enter the current state at your company\>
640
+ * **Plan:** \<describe your plan\>
641
+ * **Implementation:**
642
+ * \<measure 1\>
643
+ * \<measure 2\>
644
+ * **Monitoring and review:** \<describe what you'll do\>
645
+
646
+ ### 7.14 Secure disposal or re-use of equipment
647
+
648
+ * **Assessment:** \<enter the current state at your company\>
649
+ * **Plan:** \<describe your plan\>
650
+ * **Implementation:**
651
+ * \<measure 1\>
652
+ * \<measure 2\>
653
+ * **Monitoring and review:** \<describe what you'll do\>
654
+
655
+ ### 8.1 User end point devices
656
+
657
+ * **Assessment:** \<enter the current state at your company\>
658
+ * **Plan:** \<describe your plan\>
659
+ * **Implementation:**
660
+ * \<measure 1\>
661
+ * \<measure 2\>
662
+ * **Monitoring and review:** \<describe what you'll do\>
663
+
664
+ ### 8.2 Privileged access rights
665
+
666
+ * **Assessment:** \<enter the current state at your company\>
667
+ * **Plan:** \<describe your plan\>
668
+ * **Implementation:**
669
+ * \<measure 1\>
670
+ * \<measure 2\>
671
+ * **Monitoring and review:** \<describe what you'll do\>
672
+
673
+ ### 8.3 Information access restriction
674
+
675
+ * **Assessment:** \<enter the current state at your company\>
676
+ * **Plan:** \<describe your plan\>
677
+ * **Implementation:**
678
+ * \<measure 1\>
679
+ * \<measure 2\>
680
+ * **Monitoring and review:** \<describe what you'll do\>
681
+
682
+ ### 8.4 Access to source code
683
+
684
+ * **Assessment:** \<enter the current state at your company\>
685
+ * **Plan:** \<describe your plan\>
686
+ * **Implementation:**
687
+ * \<measure 1\>
688
+ * \<measure 2\>
689
+ * **Monitoring and review:** \<describe what you'll do\>
690
+
691
+ ### 8.5 Secure authentication
692
+
693
+ * **Assessment:** \<enter the current state at your company\>
694
+ * **Plan:** \<describe your plan\>
695
+ * **Implementation:**
696
+ * \<measure 1\>
697
+ * \<measure 2\>
698
+ * **Monitoring and review:** \<describe what you'll do\>
699
+
700
+ ### 8.6 Capacity management
701
+
702
+ * **Assessment:** \<enter the current state at your company\>
703
+ * **Plan:** \<describe your plan\>
704
+ * **Implementation:**
705
+ * \<measure 1\>
706
+ * \<measure 2\>
707
+ * **Monitoring and review:** \<describe what you'll do\>
708
+
709
+ ### 8.7 Protection against malware
710
+
711
+ * **Assessment:** \<enter the current state at your company\>
712
+ * **Plan:** \<describe your plan\>
713
+ * **Implementation:**
714
+ * \<measure 1\>
715
+ * \<measure 2\>
716
+ * **Monitoring and review:** \<describe what you'll do\>
717
+
718
+ ### 8.8 Management of technical vulnerabilities
719
+
720
+ * **Assessment:** \<enter the current state at your company\>
721
+ * **Plan:** \<describe your plan\>
722
+ * **Implementation:**
723
+ * \<measure 1\>
724
+ * \<measure 2\>
725
+ * **Monitoring and review:** \<describe what you'll do\>
726
+
727
+ ### 8.9 Configuration management
728
+
729
+ * **Assessment:** \<enter the current state at your company\>
730
+ * **Plan:** \<describe your plan\>
731
+ * **Implementation:**
732
+ * \<measure 1\>
733
+ * \<measure 2\>
734
+ * **Monitoring and review:** \<describe what you'll do\>
735
+
736
+ ### 8.10 Information deletion
737
+
738
+ * **Assessment:** \<enter the current state at your company\>
739
+ * **Plan:** \<describe your plan\>
740
+ * **Implementation:**
741
+ * \<measure 1\>
742
+ * \<measure 2\>
743
+ * **Monitoring and review:** \<describe what you'll do\>
744
+
745
+ ### 8.11 Data masking
746
+
747
+ * **Assessment:** \<enter the current state at your company\>
748
+ * **Plan:** \<describe your plan\>
749
+ * **Implementation:**
750
+ * \<measure 1\>
751
+ * \<measure 2\>
752
+ * **Monitoring and review:** \<describe what you'll do\>
753
+
754
+ ### 8.12 Data leakage prevention
755
+
756
+ * **Assessment:** \<enter the current state at your company\>
757
+ * **Plan:** \<describe your plan\>
758
+ * **Implementation:**
759
+ * \<measure 1\>
760
+ * \<measure 2\>
761
+ * **Monitoring and review:** \<describe what you'll do\>
762
+
763
+ ### 8.13 Information backup
764
+
765
+ * **Assessment:** \<enter the current state at your company\>
766
+ * **Plan:** \<describe your plan\>
767
+ * **Implementation:**
768
+ * \<measure 1\>
769
+ * \<measure 2\>
770
+ * **Monitoring and review:** \<describe what you'll do\>
771
+
772
+ ### 8.14 Redundancy of information processing facilities
773
+
774
+ * **Assessment:** \<enter the current state at your company\>
775
+ * **Plan:** \<describe your plan\>
776
+ * **Implementation:**
777
+ * \<measure 1\>
778
+ * \<measure 2\>
779
+ * **Monitoring and review:** \<describe what you'll do\>
780
+
781
+ ### 8.15 Logging
782
+
783
+ * **Assessment:** \<enter the current state at your company\>
784
+ * **Plan:** \<describe your plan\>
785
+ * **Implementation:**
786
+ * \<measure 1\>
787
+ * \<measure 2\>
788
+ * **Monitoring and review:** \<describe what you'll do\>
789
+
790
+ ### 8.16 Monitoring activities
791
+
792
+ * **Assessment:** \<enter the current state at your company\>
793
+ * **Plan:** \<describe your plan\>
794
+ * **Implementation:**
795
+ * \<measure 1\>
796
+ * \<measure 2\>
797
+ * **Monitoring and review:** \<describe what you'll do\>
798
+
799
+ ### 8.17 Clock synchronization
800
+
801
+ * **Assessment:** \<enter the current state at your company\>
802
+ * **Plan:** \<describe your plan\>
803
+ * **Implementation:**
804
+ * \<measure 1\>
805
+ * \<measure 2\>
806
+ * **Monitoring and review:** \<describe what you'll do\>
807
+
808
+ ### 8.18 Use of privileged utility programs
809
+
810
+ * **Assessment:** \<enter the current state at your company\>
811
+ * **Plan:** \<describe your plan\>
812
+ * **Implementation:**
813
+ * \<measure 1\>
814
+ * \<measure 2\>
815
+ * **Monitoring and review:** \<describe what you'll do\>
816
+
817
+ ### 8.19 Installation of software on operational systems
818
+
819
+ * **Assessment:** \<enter the current state at your company\>
820
+ * **Plan:** \<describe your plan\>
821
+ * **Implementation:**
822
+ * \<measure 1\>
823
+ * \<measure 2\>
824
+ * **Monitoring and review:** \<describe what you'll do\>
825
+
826
+ ### 8.20 Networks security
827
+
828
+ * **Assessment:** \<enter the current state at your company\>
829
+ * **Plan:** \<describe your plan\>
830
+ * **Implementation:**
831
+ * \<measure 1\>
832
+ * \<measure 2\>
833
+ * **Monitoring and review:** \<describe what you'll do\>
834
+
835
+ ### 8.21 Security of network services
836
+
837
+ * **Assessment:** \<enter the current state at your company\>
838
+ * **Plan:** \<describe your plan\>
839
+ * **Implementation:**
840
+ * \<measure 1\>
841
+ * \<measure 2\>
842
+ * **Monitoring and review:** \<describe what you'll do\>
843
+
844
+ ### 8.22 Segregation of networks
845
+
846
+ * **Assessment:** \<enter the current state at your company\>
847
+ * **Plan:** \<describe your plan\>
848
+ * **Implementation:**
849
+ * \<measure 1\>
850
+ * \<measure 2\>
851
+ * **Monitoring and review:** \<describe what you'll do\>
852
+
853
+ ### 8.23 Web filtering
854
+
855
+ * **Assessment:** \<enter the current state at your company\>
856
+ * **Plan:** \<describe your plan\>
857
+ * **Implementation:**
858
+ * \<measure 1\>
859
+ * \<measure 2\>
860
+ * **Monitoring and review:** \<describe what you'll do\>
861
+
862
+ ### 8.24 Use of cryptography
863
+
864
+ * **Assessment:** \<enter the current state at your company\>
865
+ * **Plan:** \<describe your plan\>
866
+ * **Implementation:**
867
+ * \<measure 1\>
868
+ * \<measure 2\>
869
+ * **Monitoring and review:** \<describe what you'll do\>
870
+
871
+ ### 8.25 Secure development life cycle
872
+
873
+ * **Assessment:** \<enter the current state at your company\>
874
+ * **Plan:** \<describe your plan\>
875
+ * **Implementation:**
876
+ * \<measure 1\>
877
+ * \<measure 2\>
878
+ * **Monitoring and review:** \<describe what you'll do\>
879
+
880
+ ### 8.26 Application security requirements
881
+
882
+ * **Assessment:** \<enter the current state at your company\>
883
+ * **Plan:** \<describe your plan\>
884
+ * **Implementation:**
885
+ * \<measure 1\>
886
+ * \<measure 2\>
887
+ * **Monitoring and review:** \<describe what you'll do\>
888
+
889
+ ### 8.27 Secure system architecture and engineering principles
890
+
891
+ * **Assessment:** \<enter the current state at your company\>
892
+ * **Plan:** \<describe your plan\>
893
+ * **Implementation:**
894
+ * \<measure 1\>
895
+ * \<measure 2\>
896
+ * **Monitoring and review:** \<describe what you'll do\>
897
+
898
+ ### 8.28 Secure coding
899
+
900
+ * **Assessment:** \<enter the current state at your company\>
901
+ * **Plan:** \<describe your plan\>
902
+ * **Implementation:**
903
+ * \<measure 1\>
904
+ * \<measure 2\>
905
+ * **Monitoring and review:** \<describe what you'll do\>
906
+
907
+ ### 8.29 Security testing in development and acceptance
908
+
909
+ * **Assessment:** \<enter the current state at your company\>
910
+ * **Plan:** \<describe your plan\>
911
+ * **Implementation:**
912
+ * \<measure 1\>
913
+ * \<measure 2\>
914
+ * **Monitoring and review:** \<describe what you'll do\>
915
+
916
+ ### 8.30 Outsourced development
917
+
918
+ * **Assessment:** \<enter the current state at your company\>
919
+ * **Plan:** \<describe your plan\>
920
+ * **Implementation:**
921
+ * \<measure 1\>
922
+ * \<measure 2\>
923
+ * **Monitoring and review:** \<describe what you'll do\>
924
+
925
+ ### 8.31 Separation of development, test and production environments
926
+
927
+ * **Assessment:** \<enter the current state at your company\>
928
+ * **Plan:** \<describe your plan\>
929
+ * **Implementation:**
930
+ * \<measure 1\>
931
+ * \<measure 2\>
932
+ * **Monitoring and review:** \<describe what you'll do\>
933
+
934
+ ### 8.32 Change management
935
+
936
+ * **Assessment:** \<enter the current state at your company\>
937
+ * **Plan:** \<describe your plan\>
938
+ * **Implementation:**
939
+ * \<measure 1\>
940
+ * \<measure 2\>
941
+ * **Monitoring and review:** \<describe what you'll do\>
942
+
943
+ ### 8.33 Test information
944
+
945
+ * **Assessment:** \<enter the current state at your company\>
946
+ * **Plan:** \<describe your plan\>
947
+ * **Implementation:**
948
+ * \<measure 1\>
949
+ * \<measure 2\>
950
+ * **Monitoring and review:** \<describe what you'll do\>
951
+
952
+ ### 8.34 Protection of information systems during audit testing
953
+
954
+ * **Assessment:** \<enter the current state at your company\>
955
+ * **Plan:** \<describe your plan\>
956
+ * **Implementation:**
957
+ * \<measure 1\>
958
+ * \<measure 2\>
959
+ * **Monitoring and review:** \<describe what you'll do\>
960
+
961
+ ---
962
+
963
+ Template Copyright [openregulatory.com](https://openregulatory.com). See [template
964
+ license](https://openregulatory.com/template-license).
965
+
966
+ Please don't remove this notice even if you've modified contents of this template.