diff --git a/.kilo/plans/1777714595174-misty-tiger.md b/.kilo/plans/1777714595174-misty-tiger.md
new file mode 100644
index 0000000..fb0ae8d
--- /dev/null
+++ b/.kilo/plans/1777714595174-misty-tiger.md
@@ -0,0 +1,55 @@
+# Plan to Remove Markdown Tables After First Header in Specified .md Files
+
+## Goal
+Remove the markdown table that appears after the first markdown header (## X.Y Title) in 35 specific .md files located in the directory `/Users/rico/src/iso27diy-corp/Corpus/Standards/ISO27x/OST/27002/EN`. These files contain ISO 27002 control descriptions and have a summary table listing Control type, Information security properties, etc., which needs to be removed.
+
+## Analysis
+- **Affected Files**: Identified 35 .md files containing the table starting with `| Control type | Information security properties | Cybersecurity concepts | Operational capabilities | Security domains |`.
+- **Table Structure**: The table consists of 2-4 lines:
+ - Header row starting with `| Control type`
+ - Separator row
+ - Data row
+ - Optionally, an empty row
+- **Location**: The table appears immediately after the first `##` header (e.g., `## 8.1 User endpoint devices`) and before the `**Control**` section.
+- **Pattern**: All affected files follow the pattern where the table ends just before `**Control**`.
+
+## Approach
+Use a Bash script with `sed` to remove the table lines from each affected file. The `sed` command will delete lines from the start of the table (`| Control type`) up to but not including `**Control**`.
+
+### Script
+Create and run the following Bash script in the target directory:
+
+```bash
+#!/bin/bash
+
+# Change to the target directory
+cd /Users/rico/src/iso27diy-corp/Corpus/Standards/ISO27x/OST/27002/EN || exit 1
+
+# Loop through all .md files
+for file in *.md; do
+ # Check if the file contains the table
+ if grep -q "| Control type" "$file"; then
+ # Remove the table lines: from "| Control type" to just before "**Control**"
+ sed -i '/^| Control type /,/^\*\*Control$/ { /^\*\*Control$/ !d }' "$file"
+ echo "Processed $file"
+ fi
+done
+
+echo "Table removal complete."
+```
+
+### Steps to Execute
+1. **Navigate to Directory**: Change to `/Users/rico/src/iso27diy-corp/Corpus/Standards/ISO27x/OST/27002/EN`.
+2. **Backup (Optional)**: Consider backing up the directory before running the script.
+3. **Run Script**: Execute the script to process all files.
+4. **Verify**: After running, check a few files (e.g., `a-8.1-User-endpoint-devices.md`, `a-5.15-Access-control.md`) to ensure the table is removed and the `**Control**` section remains intact.
+
+## Risks and Considerations
+- **Accuracy**: The `sed` command is designed to precisely target the table based on the observed patterns. If any file has unexpected formatting, manual review may be needed.
+- **No Impact on Non-Affected Files**: Files without the table will remain unchanged.
+- **Reversibility**: If needed, restore from backup or use version control (assuming the directory is in a git repo).
+
+## Expected Outcome
+- Tables removed from 35 files.
+- Content before and after the table (including `**Control**` and subsequent sections) preserved.
+- No changes to other .md files in the directory.
\ No newline at end of file
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-3-Terms-definitions-and-abbreviated-terms.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-3-Terms-definitions-and-abbreviated-terms.md
index 52546db..6bdd980 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-3-Terms-definitions-and-abbreviated-terms.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-3-Terms-definitions-and-abbreviated-terms.md
@@ -293,66 +293,29 @@ person or organization that can affect, be affected by, or perceive itself to be
-**3.****1.19**
-
+3.1.19
**non-repudiation**
-
ability to prove the occurrence of a claimed event or action and its originating _entities_ (3.1.11)
-
-
-**3.1.20**
-
-**pers****onnel**
-
+3.1.20
+**personnel**
persons doing work under the organization’s direction
-
-
-Note 1 to entry: The concept of personnel includes the organization’s members, such as the governing body, top management, employees, temporary staff, contractors and volunteers.
-
-
-
-
-
-
-
-© ISO/IEC 2022 – All rights reserved **3**
-
-
-
-
-
-
-
-**ISO/IEC 27002:2022(E)**
-
-
-
-
-
-
-
-**3.1****.21**
-
-Licensed to ISO27DIY / Richard Kranendonk (rkranendonk@mac.com)
-
-ISO Store Order: OP-582678 / Downloaded: 2022-02-17 Single user licence only, copying and networking prohibited.
-
-**personally identifiable** **information**
+*Note 1 to entry: The concept of personnel includes the organization’s members, such as the governing body, top management, employees, temporary staff, contractors and volunteers.*
+3.1.21
+**personally identifiable information**
**PII**
-
any information that (a) can be used to establish a link between the information and the natural person to whom such information relates, or (b) is or can be directly or indirectly linked to a natural person.
-
-
-Note 1 to entry: The “natural person” in the definition is the _PII_ _principal_ (3.1.22). To determine whether a PII principal is identifiable, account should be taken of all the means which can reasonably be used by the privacy stakeholder holding the data, or by any other party, to establish the link between the set of PII and the natural person.
-
-
+*Note 1 to entry: The “natural person” in the definition is the PII principal (3.1.22). To determine whether a PII principal is identifiable, account should be taken of all the means which can reasonably be used by the privacy stakeholder holding the data, or by any other party, to establish the link between the set of PII and the natural person.*
[SOURCE: ISO/IEC 29100:2011/Amd.1:2018, 2.9]
+© ISO/IEC 2022 – All rights reserved **3**
+**ISO/IEC 27002:2022(E)**
+Licensed to ISO27DIY / Richard Kranendonk (rkranendonk@mac.com)
+ISO Store Order: OP-582678 / Downloaded: 2022-02-17 Single user licence only, copying and networking prohibited.
**3.1.22**
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-5.10-Acceptable-use-of-information-and-other-associated-assets.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-5.10-Acceptable-use-of-information-and-other-associated-assets.md
index c3daaa8..186a3ce 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-5.10-Acceptable-use-of-information-and-other-associated-assets.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-5.10-Acceptable-use-of-information-and-other-associated-assets.md
@@ -26,10 +26,6 @@ status: active
## 5.10 Acceptable use of information and other associated assets
-| Control type | Information security properties | Cybersecurity concepts | Operational capabilities | Security domains |
-| ------------ | ----------------------------------------- | ---------------------- | ----------------------------------------- | ------------------------------------- |
-| #Preventive | #Confidentiality #Integrity #Availability | #Protect | #Asset_management #Information_protection | #Governance_and_Ecosystem #Protection |
-
**Control**
Rules for the acceptable use and procedures for handling information and other associated assets should be identified, documented and implemented.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-5.11-Return-of-assets.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-5.11-Return-of-assets.md
index fb6b272..1c144e9 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-5.11-Return-of-assets.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-5.11-Return-of-assets.md
@@ -24,10 +24,6 @@ status: active
-| Control type | Information security properties | Cybersecurity concepts | Operational capabilities | Security domains |
-| ------------ | ----------------------------------------- | ---------------------- | ------------------------ | ---------------- |
-| #Preventive | #Confidentiality #Integrity #Availability | #Protect | #Asset_management | #Protection |
-
**Control**
Personnel and other interested parties as appropriate should return all the organization’s assets in their possession upon change or termination of their employment, contract or agreement.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-5.12-Classification-of-information.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-5.12-Classification-of-information.md
index 8fab83b..8875f76 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-5.12-Classification-of-information.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-5.12-Classification-of-information.md
@@ -24,10 +24,6 @@ status: active
## 5.12 Classification of information
-| Control type | Information security properties | Cybersecurity concepts | Operational capabilities | Security domains |
-| ------------ | ----------------------------------------- | ---------------------- | ------------------------ | -------------------- |
-| #Preventive | #Confidentiality #Integrity #Availability | #Identify | #Information_protection | #Protection #Defence |
-
**Control**
Information should be classified according to the information security needs of the organization based on confidentiality, integrity, availability and relevant interested party requirements.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-5.14-Information-transfer.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-5.14-Information-transfer.md
index 9e55b6e..277a18f 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-5.14-Information-transfer.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-5.14-Information-transfer.md
@@ -24,10 +24,6 @@ status: active
## 5.14 Information transfer
-| Control type | Information security properties | Cybersecurity concepts | Operational capabilities | Security domains |
-| ------------ | ----------------------------------------- | ---------------------- | ----------------------------------------- | ---------------- |
-| #Preventive | #Confidentiality #Integrity #Availability | #Protect | #Asset_management #Information_protection | #Protection |
-
**Control**
Information transfer rules, procedures, or agreements should be in place for all types of transfer facilities within the organization and between the organization and other parties.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-5.15-Access-control.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-5.15-Access-control.md
index b2594e8..26f3ce5 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-5.15-Access-control.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-5.15-Access-control.md
@@ -22,10 +22,6 @@ status: active
## 5.15 Access control
-| Control type | Information security properties | Cybersecurity concepts | Operational capabilities | Security domains |
-| ------------ | ----------------------------------------- | ---------------------- | ------------------------------- | ---------------- |
-| #Preventive | #Confidentiality #Integrity #Availability | #Protect | #Identity_and_access_management | #Protection |
-
**Control**
Rules to control physical and logical access to information and other associated assets should be established and implemented based on business and information security requirements.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-5.16-Identity-management.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-5.16-Identity-management.md
index 39667e3..a6ed855 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-5.16-Identity-management.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-5.16-Identity-management.md
@@ -22,10 +22,6 @@ status: active
## 5.16 Identity management
-| Control type | Information security properties | Cybersecurity concepts | Operational capabilities | Security domains |
-| ------------ | ----------------------------------------- | ---------------------- | ------------------------------- | ---------------- |
-| #Preventive | #Confidentiality #Integrity #Availability | #Protect | #Identity_and_access_management | #Protection |
-
**Control**
The full life cycle of identities should be managed.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-5.18-Access-rights.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-5.18-Access-rights.md
index 9594348..1a64774 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-5.18-Access-rights.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-5.18-Access-rights.md
@@ -22,10 +22,6 @@ status: active
## 5.18 Access rights
-| Control type | Information security properties | Cybersecurity concepts | Operational capabilities | Security domains |
-| ------------ | ----------------------------------------- | ---------------------- | ------------------------------- | ---------------- |
-| #Preventive | #Confidentiality #Integrity #Availability | #Protect | #Identity_and_access_management | #Protection |
-
**Control**
Access rights to information and other associated assets should be provisioned, reviewed, modified and removed in accordance with the organization’s topic-specific policy on and rules for access control.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-5.25-Assessment-and-decision-on-information-security-events.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-5.25-Assessment-and-decision-on-information-security-events.md
index a1b7232..d2498c7 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-5.25-Assessment-and-decision-on-information-security-events.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-5.25-Assessment-and-decision-on-information-security-events.md
@@ -26,12 +26,6 @@ status: active
-| Control type | Information security properties | Cybersecurity concepts | Operational capabilities | Security domains |
-| ------------ | ----------------------------------------- | ---------------------- | -------------------------------------- | ---------------- |
-| #Detective | #Confidentiality #Integrity #Availability | #Detect #Respond | #Information_security_event_management | #Defence |
-
-
-
**Control**
The organization should assess information security events and decide if they are to be categorized as information security incidents.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-5.26-Response-to-information-security-incidents.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-5.26-Response-to-information-security-incidents.md
index cad7485..33a1217 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-5.26-Response-to-information-security-incidents.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-5.26-Response-to-information-security-incidents.md
@@ -26,11 +26,6 @@ status: active
-| Control type | Information security properties | Cybersecurity concepts | Operational capabilities | Security domains |
-| ------------ | ----------------------------------------- | ---------------------- | -------------------------------------- | ---------------- |
-| #Corrective | #Confidentiality #Integrity #Availability | #Respond #Recover | #Information_security_event_management | #Defence |
-
-
**Control**
Information security incidents should be responded to in accordance with the documented procedures.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-5.28-Collection-of-evidence.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-5.28-Collection-of-evidence.md
index 862ba24..138a9ef 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-5.28-Collection-of-evidence.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-5.28-Collection-of-evidence.md
@@ -26,12 +26,6 @@ status: active
-| Control type | Information security properties | Cybersecurity concepts | Operational capabilities | Security domains |
-| ------------ | ----------------------------------------- | ---------------------- | -------------------------------------- | ---------------- |
-| #Corrective | #Confidentiality #Integrity #Availability | #Detect #Respond | #Information_security_event_management | #Defence |
-
-
-
**Control**
The organization should establish and implement procedures for the identification, collection, acquisition and preservation of evidence related to information security events.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-5.29-Information-security-during-disruption.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-5.29-Information-security-during-disruption.md
index d8bcf2a..ef94286 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-5.29-Information-security-during-disruption.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-5.29-Information-security-during-disruption.md
@@ -28,10 +28,6 @@ status: active
## 5.29 Information security during disruption
-| Control type | Information security properties | Cybersecurity concepts | Operational capabilities | Security domains |
-| ----------------------- | ----------------------------------------- | ---------------------- | ------------------------ | ----------------------- |
-| #Preventive #Corrective | #Confidentiality #Integrity #Availability | #Protect #Respond | #Continuity | #Protection #Resilience |
-
**Control**
The organization should plan how to maintain information security at an appropriate level during disruption.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-5.30-ICT-readiness-for-business-continuity.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-5.30-ICT-readiness-for-business-continuity.md
index 369fd10..d252543 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-5.30-ICT-readiness-for-business-continuity.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-5.30-ICT-readiness-for-business-continuity.md
@@ -17,7 +17,7 @@ tags:
status: active
---
-## **5.30** **ICT** **readiness** **for** **business** continuity
+## 5.30 ICT readiness for business continuity
## Purpose
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-5.31-Legal-statutory-regulatory-and-contractual-requirements.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-5.31-Legal-statutory-regulatory-and-contractual-requirements.md
index 52a9de2..68286c2 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-5.31-Legal-statutory-regulatory-and-contractual-requirements.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-5.31-Legal-statutory-regulatory-and-contractual-requirements.md
@@ -24,10 +24,6 @@ status: active
## 5.31 Legal, statutory, regulatory and contractual requirements
-| Control type | Information security properties | Cybersecurity concepts | Operational capabilities | Security domains |
-| ------------ | ----------------------------------------- | ---------------------- | ------------------------ | ------------------------------------- |
-| #Preventive | #Confidentiality #Integrity #Availability | #Identify | #Legal_and_compliance | #Governance_and_Ecosystem #Protection |
-
**Control**
Legal, statutory, regulatory and contractual requirements relevant to information security and the organization’s approach to meet these requirements should be identified, documented and kept up to date.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-5.35-Independent-review-of-information-security.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-5.35-Independent-review-of-information-security.md
index 16314aa..f99c777 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-5.35-Independent-review-of-information-security.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-5.35-Independent-review-of-information-security.md
@@ -28,10 +28,6 @@ status: active
-| Control type | Information security properties | Cybersecurity concepts | Operational capabilities | Security domains |
-| ----------------------- | ----------------------------------------- | ---------------------- | ------------------------------- | ------------------------- |
-| #Preventive #Corrective | #Confidentiality #Integrity #Availability | #Identify #Protect | #Information_security_assurance | #Governance_and_Ecosystem |
-
**Control**
The organization’s approach to managing information security and its implementation including people, processes and technologies should be reviewed independently at planned intervals, or when significant changes occur.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-5.36-Compliance-with-policies-rules-and-standards-for-information-security.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-5.36-Compliance-with-policies-rules-and-standards-for-information-security.md
index 564b7d4..bf86d20 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-5.36-Compliance-with-policies-rules-and-standards-for-information-security.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-5.36-Compliance-with-policies-rules-and-standards-for-information-security.md
@@ -26,10 +26,6 @@ status: active
## 5.36 Compliance with policies, rules and standards for information security
-| Control type | Information security properties | Cybersecurity concepts | Operational capabilities | Security domains |
-| ------------ | ----------------------------------------- | ---------------------- | ----------------------------------------------------- | ------------------------- |
-| #Preventive | #Confidentiality #Integrity #Availability | #Identify #Protect | #Legal_and_compliance #Information_security_assurance | #Governance_and_Ecosystem |
-
**Control**
Compliance with the organization’s information security policy, topic-specific policies, rules and standards should be regularly reviewed.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-5.37-Documented-operating-procedures.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-5.37-Documented-operating-procedures.md
index e623cf2..ac5330f 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-5.37-Documented-operating-procedures.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-5.37-Documented-operating-procedures.md
@@ -38,10 +38,6 @@ status: active
## 5.37 Documented operating procedures
-| Control type | Information security properties | Cybersecurity concepts | Operational capabilities | Security domains |
-| ----------------------- | ----------------------------------------- | ---------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------- |
-| #Preventive #Corrective | #Confidentiality #Integrity #Availability | #Protect #Recover | #Asset_management #Physical_security #System_and_network_security #Application_security #Secure_configuration #Identity_and_access_management #Threat_and_vulnerability_management #Continuity #Information_security_event_management | #Governance_and_Ecosystem #Protection #Defence |
-
**Control**
Operating procedures for information processing facilities should be documented and made available to personnel who need them.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-5.9-Inventory-of-information-and-other-associated-assets.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-5.9-Inventory-of-information-and-other-associated-assets.md
index 3fa68cb..a24833a 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-5.9-Inventory-of-information-and-other-associated-assets.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-5.9-Inventory-of-information-and-other-associated-assets.md
@@ -24,10 +24,6 @@ status: active
## 5.9 Inventory of information and other associated assets
-| Control type | Information security properties | Cybersecurity concepts | Operational capabilities | Security domains |
-|--------------|----------------------------------------|-----------------------|-------------------------|-----------------------------------|
-| #Preventive | #Confidentiality #Integrity #Availability | #Identify | #Asset_management | #Governance_and_Ecosystem #Protection |
-
**Control**
An inventory of information and other associated assets, including owners, should be developed and maintained.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-6.1-Screening.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-6.1-Screening.md
index 8eedae4..53a63b5 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-6.1-Screening.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-6.1-Screening.md
@@ -22,10 +22,6 @@ status: active
## 6.1 Screening
-| **Control type** | **Information security properties** | **Cybersecurity concepts** | **Operational capabilities** | **Security domains** |
-| ---------------- | ----------------------------------------- | -------------------------- | ---------------------------- | ------------------------- |
-| #Preventive | #Confidentiality #Integrity #Availability | #Protect | #Human_resource_security | #Governance_and_Ecosystem |
-
**Control**
Background verification checks on all candidates to become personnel should be carried out prior to joining the organization and on an ongoing basis taking into consideration applicable laws, regulations and ethics and be proportional to the business requirements, the classification of the information to be accessed and the perceived risks.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-6.2-Terms-and-conditions-of-employment.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-6.2-Terms-and-conditions-of-employment.md
index 54b967b..210896e 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-6.2-Terms-and-conditions-of-employment.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-6.2-Terms-and-conditions-of-employment.md
@@ -22,10 +22,6 @@ status: active
## 6.2 Terms and conditions of employment
-| **Control type** | **Information security properties** | **Cybersecurity concepts** | **Operational capabilities** | **Security domains** |
-| ---------------- | ----------------------------------------- | -------------------------- | ---------------------------- | ------------------------- |
-| #Preventive | #Confidentiality #Integrity #Availability | #Protect | #Human_resource_security | #Governance_and_Ecosystem |
-
**Control**
The employment contractual agreements should state the personnel’s and the organization’s responsibilities for information security.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-6.3-Information-security-awareness-education-and-training.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-6.3-Information-security-awareness-education-and-training.md
index 63dfd7d..e7e1626 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-6.3-Information-security-awareness-education-and-training.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-6.3-Information-security-awareness-education-and-training.md
@@ -22,12 +22,6 @@ status: active
## 6.3 Information security awareness, education and training
-| **Control type** | **Information security properties** | **Cybersecurity concepts** | **Operational capabilities** | **Security domains** |
-| ---------------- | ----------------------------------------- | -------------------------- | ---------------------------- | ------------------------- |
-| #Preventive | #Confidentiality #Integrity #Availability | #Protect | #Human_resource_security | #Governance_and_Ecosystem |
-
-
-
**Control**
Personnel of the organization and relevant interested parties should receive appropriate information security awareness, education and training and regular updates of the organization's information security policy, topic-specific policies and procedures, as relevant for their job function.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-6.4-Disciplinary-process.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-6.4-Disciplinary-process.md
index ed8d099..53e5172 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-6.4-Disciplinary-process.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-6.4-Disciplinary-process.md
@@ -28,14 +28,6 @@ status: active
-| **Control type** | **Information security properties** | **Cybersecurity concepts** | **Operational capabilities** | **Security domains** |
-
-|----------------------------|-----------------------------------------|---------------------------|-------------------------------|-----------------------------|
-
-| #Preventive #Corrective | #Confidentiality #Integrity #Availability | #Protect #Respond | #Human_resource_security | #Governance_and_Ecosystem |
-
-
-
**Control**
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-6.5-Responsibilities-after-termination-or-change-of-employment.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-6.5-Responsibilities-after-termination-or-change-of-employment.md
index bfa122e..aa0f4c5 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-6.5-Responsibilities-after-termination-or-change-of-employment.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-6.5-Responsibilities-after-termination-or-change-of-employment.md
@@ -24,10 +24,6 @@ status: active
## 6.5 Responsibilities after termination or change of employment
-| **Control type** | **Information security properties** | **Cybersecurity concepts** | **Operational capabilities** | **Security domains** |
-| ---------------- | ----------------------------------------- | -------------------------- | ---------------------------- | -------------------- |
-| #Preventive | #Confidentiality #Integrity #Availability | | | |
-
**Control**
Information security responsibilities and duties that remain valid after termination or change of employment should be defined, enforced and communicated to relevant personnel and other interested parties.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-6.6-Confidentiality-or-non-disclosure-agreements.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-6.6-Confidentiality-or-non-disclosure-agreements.md
index e03a3fe..67549a4 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-6.6-Confidentiality-or-non-disclosure-agreements.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-6.6-Confidentiality-or-non-disclosure-agreements.md
@@ -24,14 +24,6 @@ status: active
-| **Control type** | **Information security properties** | **Cybersecurity concepts** | **Operational capabilities** | **Security domains** |
-
-|------------------|------------------------------------|---------------------------|-------------------------------------------------------------|-------------------------------|
-
-| #Preventive | #Confidentiality | #Protect | #Human_resource_security #Information_protection #Supplier_relationships | #Governance_and_Ecosystem |
-
-
-
**Control**
Confidentiality or non-disclosure agreements reflecting the organization’s needs for the protection of information should be identified, documented, regularly reviewed and signed by personnel and other relevant interested parties.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-6.7-Remote-working.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-6.7-Remote-working.md
index 56625d9..4ddb2c9 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-6.7-Remote-working.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-6.7-Remote-working.md
@@ -28,14 +28,6 @@ status: active
-| **Control type** | **Information security properties** | **Cybersecurity concepts** | **Operational capabilities** | **Security domains** |
-
-|------------------|-----------------------------------------|---------------------------|--------------------------------------------------------------------------------|---------------------|
-
-| #Preventive | #Confidentiality #Integrity #Availability | #Protect | #Asset_management #Information_protection #Physical_security #System_and_network_security | #Protection |
-
-
-
**Control**
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-7.10-Storage-media.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-7.10-Storage-media.md
index 1c1bd65..ba2bc6b 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-7.10-Storage-media.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-7.10-Storage-media.md
@@ -26,14 +26,6 @@ status: active
-| **Control type** | **Information security properties** | **Cybersecurity concepts** | **Operational capabilities** | **Security domains** |
-
-|------------------|-----------------------------------------|---------------------------|---------------------------------------------|---------------------|
-
-| #Preventive | #Confidentiality #Integrity #Availability | #Protect | #Physical_security #Asset_management | #Protection |
-
-
-
**Control**
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-7.11-Supporting-utilities.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-7.11-Supporting-utilities.md
index fabb66e..3c1b116 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-7.11-Supporting-utilities.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-7.11-Supporting-utilities.md
@@ -27,14 +27,6 @@ status: active
-| **Control type** | **Information security properties** | **Cybersecurity concepts** | **Operational capabilities** | **Security domains** |
-
-|-----------------------|------------------------------------|---------------------------|-----------------------------|----------------------|
-
-| #Preventive
#Detective | #Integrity
#Availability | #Protect #Detect | #Physical_security | #Protection |
-
-
-
**Control**
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-7.12-Cabling-security.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-7.12-Cabling-security.md
index 325389c..f1ff2b8 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-7.12-Cabling-security.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-7.12-Cabling-security.md
@@ -23,14 +23,6 @@ status: active
-| **Control type** | **Information security properties** | **Cybersecurity concepts** | **Operational capabilities** | **Security domains** |
-
-|------------------|------------------------------------|---------------------------|-----------------------------|----------------------|
-
-| #Preventive | #Confidentiality #Availability | #Protect | #Physical_security | #Protection |
-
-
-
**Control**
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-7.13-Equipment-maintenance.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-7.13-Equipment-maintenance.md
index c2fc6fb..c85cfc9 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-7.13-Equipment-maintenance.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-7.13-Equipment-maintenance.md
@@ -28,14 +28,6 @@ status: active
-| **Control type** | **Information security properties** | **Cybersecurity concepts** | **Operational capabilities** | **Security domains** |
-
-|------------------|-----------------------------------------|---------------------------|----------------------------------------|---------------------------|
-
-| #Preventive | #Confidentiality #Integrity #Availability | #Protect | #Physical_security #Asset_management | #Protection #Resilience |
-
-
-
**Control**
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-7.14-Secure-disposal-or-re-use-of-equipment.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-7.14-Secure-disposal-or-re-use-of-equipment.md
index 673ee9a..8ed3167 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-7.14-Secure-disposal-or-re-use-of-equipment.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-7.14-Secure-disposal-or-re-use-of-equipment.md
@@ -23,14 +23,6 @@ status: active
-| **Control type** | **Information security properties** | **Cybersecurity concepts** | **Operational capabilities** | **Security domains** |
-
-|------------------|------------------------------------|---------------------------|----------------------------------------|---------------------------|
-
-| #Preventive | #Confidentiality | #Protect | #Physical_security #Asset_management | #Protection |
-
-
-
**Control**
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-7.3-Securing-offices-rooms-and-facilities.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-7.3-Securing-offices-rooms-and-facilities.md
index aad9a52..94482cf 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-7.3-Securing-offices-rooms-and-facilities.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-7.3-Securing-offices-rooms-and-facilities.md
@@ -26,14 +26,6 @@ status: active
-| **Control type** | **Information security properties** | **Cybersecurity concepts** | **Operational capabilities** | **Security domains** |
-
-|------------------|-----------------------------------------|---------------------------|--------------------------------------|---------------------|
-
-| #Preventive | #Confidentiality #Integrity #Availability | #Protect | #Physical_security
#Asset_management | #Protection |
-
-
-
**Control**
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-7.4-Physical-security-monitoring.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-7.4-Physical-security-monitoring.md
index 76dd130..a277d90 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-7.4-Physical-security-monitoring.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-7.4-Physical-security-monitoring.md
@@ -30,14 +30,6 @@ status: active
-| **Control type** | **Information security properties** | **Cybersecurity concepts** | **Operational capabilities** | **Security domains** |
-
-|----------------------------|-----------------------------------------|---------------------------|-----------------------------|---------------------------|
-
-| #Preventive #Detective | #Confidentiality #Integrity #Availability | #Protect #Detect | #Physical_security | #Protection #Defence |
-
-
-
**Control**
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-7.5-Protecting-against-physical-and-environmental-threats.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-7.5-Protecting-against-physical-and-environmental-threats.md
index da7edb2..7f6de42 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-7.5-Protecting-against-physical-and-environmental-threats.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-7.5-Protecting-against-physical-and-environmental-threats.md
@@ -24,14 +24,6 @@ status: active
-| **Control type** | **Information security properties** | **Cybersecurity concepts** | **Operational capabilities** | **Security domains** |
-
-|------------------|-----------------------------------------|---------------------------|-----------------------------|----------------------|
-
-| #Preventive | #Confidentiality #Integrity #Availability | #Protect | #Physical_security | #Protection |
-
-
-
**Control**
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-7.6-Working-in-secure-areas.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-7.6-Working-in-secure-areas.md
index ca8a5ab..6acab15 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-7.6-Working-in-secure-areas.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-7.6-Working-in-secure-areas.md
@@ -24,14 +24,6 @@ status: active
-| **Control type** | **Information security properties** | **Cybersecurity concepts** | **Operational capabilities** | **Security domains** |
-
-|------------------|-----------------------------------------|---------------------------|-----------------------------|----------------------|
-
-| #Preventive | #Confidentiality #Integrity #Availability | #Protect | #Physical_security | #Protection |
-
-
-
**Control**
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-7.7-Clear-desk-and-clear-screen.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-7.7-Clear-desk-and-clear-screen.md
index 12039b9..a68eb55 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-7.7-Clear-desk-and-clear-screen.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-7.7-Clear-desk-and-clear-screen.md
@@ -21,12 +21,6 @@ status: active
-| **Control type** | **Information security properties** | **Cybersecurity concepts** | **Operational capabilities** | **Security domains** |
-
-|------------------|------------------------------------|---------------------------|-----------------------------|----------------------|
-
-| #Preventive | #Confidentiality | #Protect | #Physical_security | #Protection |
-
**Control**
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-7.8-Equipment-siting-and-protection.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-7.8-Equipment-siting-and-protection.md
index 7c554dc..cadc4e4 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-7.8-Equipment-siting-and-protection.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-7.8-Equipment-siting-and-protection.md
@@ -26,14 +26,6 @@ status: active
-| **Control type** | **Information security properties** | **Cybersecurity concepts** | **Operational capabilities** | **Security domains** |
-
-|------------------|-----------------------------------------|---------------------------|----------------------------------------|---------------------|
-
-| #Preventive | #Confidentiality #Integrity #Availability | #Protect | #Physical_security #Asset_management | #Protection |
-
-
-
**Control**
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-7.9-Security-of-assets-off-premises.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-7.9-Security-of-assets-off-premises.md
index 47b2ce1..dd032d7 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-7.9-Security-of-assets-off-premises.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-7.9-Security-of-assets-off-premises.md
@@ -26,12 +26,6 @@ status: active
-| **Control type** | **Information security properties** | **Cybersecurity concepts** | **Operational capabilities** | **Security domains** |
-
-|------------------|-----------------------------------------|---------------------------|----------------------------------------|---------------------|
-
-| #Preventive | #Confidentiality #Integrity #Availability | #Protect | #Physical_security #Asset_management | #Protection |
-
**Control**
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.1-User-endpoint-devices.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.1-User-endpoint-devices.md
index 37df8d1..d351594 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.1-User-endpoint-devices.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.1-User-endpoint-devices.md
@@ -26,10 +26,6 @@ status: active
-| Control type | Information security properties | Cybersecurity concepts | Operational capabilities | Security domains |
-| -------------- | ---------------------------------------- | --------------------- | ----------------------------------------- | --------------- |
-| #Preventive | #Confidentiality #Integrity #Availability | #Protect | #Asset_management
#Information_protection | #Protection |
-
**Control**
Information stored on, processed by or accessible via user endpoint devices should be protected.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.10-Information-deletion.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.10-Information-deletion.md
index ee1fe68..d5132e6 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.10-Information-deletion.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.10-Information-deletion.md
@@ -21,10 +21,6 @@ status: active
## 8.10 Information deletion
-| **Control type** | **Information security properties** | **Cybersecurity concepts** | **Operational capabilities** | **Security domains** |
-| ---------------- | ----------------------------------- | -------------------------- | --------------------------------------------- | -------------------- |
-| #Preventive | #Confidentiality | #Protect | #Information_protection #Legal_and_compliance | #Protection |
-
**Control**
Information stored in information systems, devices or in any other storage media should be deleted when no longer required.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.11-Data-masking.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.11-Data-masking.md
index 33a9c73..97a04d1 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.11-Data-masking.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.11-Data-masking.md
@@ -19,10 +19,6 @@ status: active
## 8.11 Data masking
-| **Control type** | **Information security properties** | **Cybersecurity concepts** | **Operational capabilities** | **Security domains** |
-| ---------------- | ----------------------------------- | -------------------------- | ---------------------------- | -------------------- |
-| #Preventive | #Confidentiality | #Protect | #Information_protection | #Protection |
-
**Control**
Data masking should be used in accordance with the organization’s topic-specific policy on access control and other related topic-specific policies, and business requirements, taking applicable legislation into consideration.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.12-Data-leakage-prevention.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.12-Data-leakage-prevention.md
index 4c18b96..0752b78 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.12-Data-leakage-prevention.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.12-Data-leakage-prevention.md
@@ -25,10 +25,6 @@ status: active
## 8.12 Data leakage prevention
-| **Control type** | **Information security properties** | **Cybersecurity concepts** | **Operational capabilities** | **Security domains** |
-| ---------------------- | ----------------------------------- | -------------------------- | ---------------------------- | -------------------- |
-| #Preventive #Detective | #Confidentiality | #Protect #Detect | #Information_protection | #Protection #Defence |
-
**Control**
Data leakage prevention measures should be applied to systems, networks and any other devices that process, store or transmit sensitive information.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.13-Information-backup.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.13-Information-backup.md
index 65000f0..b18bd31 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.13-Information-backup.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.13-Information-backup.md
@@ -21,10 +21,6 @@ status: active
## 8.13 Information backup
-| Control type | Information security properties | Cybersecurity concepts | Operational capabilities | Security domains |
-| ------------ | ------------------------------- | ---------------------- | ------------------------ | ---------------- |
-| #Corrective | #Integrity #Availability | #Recover | #Continuity | #Protection |
-
**Control**
Backup copies of information, software and systems should be maintained and regularly tested in accordance with the agreed topic-specific policy on backup.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.14-Redundancy-of-information-processing-facilities.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.14-Redundancy-of-information-processing-facilities.md
index 344c568..085113b 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.14-Redundancy-of-information-processing-facilities.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.14-Redundancy-of-information-processing-facilities.md
@@ -23,10 +23,6 @@ status: active
## 8.14 Redundancy of information processing facilities
-| Control type | Information security properties | Cybersecurity concepts | Operational capabilities | Security domains |
-| ------------ | ------------------------------- | ---------------------- | ----------------------------- | ----------------------- |
-| #Preventive | #Availability | #Protect | #Continuity #Asset_management | #Protection #Resilience |
-
**Control**
Information processing facilities should be implemented with redundancy sufficient to meet availability requirements.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.15-Logging.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.15-Logging.md
index 68493e9..9ce444b 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.15-Logging.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.15-Logging.md
@@ -24,10 +24,6 @@ status: active
## 8.15 Logging
-| **Control type** | **Information security properties** | **Cybersecurity concepts** | **Operational capabilities** | **Security domains** |
-| ---------------- | ----------------------------------------- | -------------------------- | -------------------------------------- | -------------------- |
-| #Detective | #Confidentiality #Integrity #Availability | #Detect | #Information_security_event_management | #Protection #Defence |
-
**Control**
Logs that record activities, exceptions, faults and other relevant events should be produced, stored, protected and analysed.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.16-Monitoring-activities.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.16-Monitoring-activities.md
index b7cbb7e..75dc120 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.16-Monitoring-activities.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.16-Monitoring-activities.md
@@ -26,11 +26,6 @@ status: active
## 8.16 Monitoring activities
-| **Control type** | **Information security properties** | **Cybersecurity concepts** | **Operational capabilities** | **Security domains** |
-| ---------------------- | ----------------------------------------- | -------------------------- | -------------------------------------- | -------------------- |
-| #Detective #Corrective | #Confidentiality #Integrity #Availability | #Detect #Respond | #Information_security_event_management | #Defence |
-
-
**Control**
Networks, systems and applications should be monitored for anomalous behaviour and appropriate actions taken to evaluate potential information security incidents.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.17-Clock-synchronization.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.17-Clock-synchronization.md
index dbc2438..9ae7822 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.17-Clock-synchronization.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.17-Clock-synchronization.md
@@ -23,10 +23,6 @@ status: active
## 8.17 Clock synchronization
-| **Control type** | **Information security properties** | **Cybersecurity concepts** | **Operational capabilities** | **Security domains** |
-| ---------------- | ----------------------------------- | -------------------------- | -------------------------------------- | -------------------- |
-| #Detective | #Integrity | #Protect #Detect | #Information_security_event_management | #Protection #Defence |
-
**Control**
The clocks of information processing systems used by the organization should be synchronized to approved time sources.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.18-Use-of-privileged-utility-programs.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.18-Use-of-privileged-utility-programs.md
index d56d89f..bff0fd1 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.18-Use-of-privileged-utility-programs.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.18-Use-of-privileged-utility-programs.md
@@ -25,10 +25,6 @@ status: active
## 8.18 Use of privileged utility programs
-| Control type | Information security properties | Cybersecurity concepts | Operational capabilities | Security domains |
-| ------------ | ----------------------------------------- | ---------------------- | ------------------------------------------------------------------------ | ---------------- |
-| #Preventive | #Confidentiality #Integrity #Availability | #Protect | #System_and_network_security #Secure_configuration #Application_security | #Protection |
-
**Control**
The use of utility programs that can be capable of overriding system and application controls should be restricted and tightly controlled.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.19-Installation-of-software-on-operational-systems.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.19-Installation-of-software-on-operational-systems.md
index b24a47d..6eefa12 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.19-Installation-of-software-on-operational-systems.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.19-Installation-of-software-on-operational-systems.md
@@ -24,10 +24,6 @@ status: active
## 8.19 Installation of software on operational systems
-| Control type | Information security properties | Cybersecurity concepts | Operational capabilities | Security domains |
-| ------------ | ----------------------------------------- | ---------------------- | ------------------------------------------- | ---------------- |
-| #Preventive | #Confidentiality #Integrity #Availability | #Protect | #Secure_configuration #Application_security | #Protection |
-
**Control**
Procedures and measures should be implemented to securely manage software installation on operational systems.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.2-Privileged-access-rights.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.2-Privileged-access-rights.md
index f1108ad..d5e15ba 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.2-Privileged-access-rights.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.2-Privileged-access-rights.md
@@ -22,10 +22,6 @@ status: active
## 8.2 Privileged access rights
-| Control type | Information security properties | Cybersecurity concepts | Operational capabilities | Security domains |
-| ------------ | ----------------------------------------- | ---------------------- | ------------------------------- | ---------------- |
-| #Preventive | #Confidentiality #Integrity #Availability | #Protect | #Identity_and_access_management | #Protection |
-
**Control**
The allocation and use of privileged access rights should be restricted and managed.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.20-Networks-security.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.20-Networks-security.md
index bdf8c97..37f8edd 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.20-Networks-security.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.20-Networks-security.md
@@ -28,10 +28,6 @@ status: active
-| Control type | Information security properties | Cybersecurity concepts | Operational capabilities | Security domains |
-| ---------------------- | ----------------------------------------- | ---------------------- | ---------------------------- | ---------------- |
-| #Preventive #Detective | #Confidentiality #Integrity #Availability | #Protect #Detect | #System_and_network_security | #Protection |
-
**Control**
Networks and network devices should be secured, managed and controlled to protect information in systems and applications.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.21-Security-of-network-services.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.21-Security-of-network-services.md
index e05780b..9135e06 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.21-Security-of-network-services.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.21-Security-of-network-services.md
@@ -22,10 +22,6 @@ status: active
## 8.21 Security of network services
-| Control type | Information security properties | Cybersecurity concepts | Operational capabilities | Security domains |
-| ------------ | ----------------------------------------- | ---------------------- | ---------------------------- | ---------------- |
-| #Preventive | #Confidentiality #Integrity #Availability | #Protect | #System_and_network_security | #Protection |
-
**Control**
Security mechanisms, service levels and service requirements of network services should be identified, implemented and monitored.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.22-Segregation-of-networks.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.22-Segregation-of-networks.md
index cf6511f..dc08aa7 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.22-Segregation-of-networks.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.22-Segregation-of-networks.md
@@ -22,10 +22,6 @@ status: active
## 8.22 Segregation of networks
-| Control type | Information security properties | Cybersecurity concepts | Operational capabilities | Security domains |
-| ------------ | ----------------------------------------- | ---------------------- | ---------------------------- | ---------------- |
-| #Preventive | #Confidentiality #Integrity #Availability | #Protect | #System_and_network_security | #Protection |
-
**Control**
Groups of information services, users and information systems should be segregated in the organization’s networks.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.23-Web-filtering.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.23-Web-filtering.md
index 12063bb..1f2f283 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.23-Web-filtering.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.23-Web-filtering.md
@@ -22,10 +22,6 @@ status: active
## 8.23 Web filtering
-| Control type | Information security properties | Cybersecurity concepts | Operational capabilities | Security domains |
-| ------------ | ----------------------------------------- | ---------------------- | ---------------------------- | ---------------- |
-| #Preventive | #Confidentiality #Integrity #Availability | #Protect | #System_and_network_security | #Protection |
-
**Control**
Access to external websites should be managed to reduce exposure to malicious content.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.24-Use-of-cryptography.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.24-Use-of-cryptography.md
index 22effd6..aea6f57 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.24-Use-of-cryptography.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.24-Use-of-cryptography.md
@@ -24,11 +24,6 @@ status: active
-| Control type | Information security properties | Cybersecurity concepts | Operational capabilities | Security domains
-| -------------- | ---------------------------------------- | --------------------- | ------------------------- | --------------- |
-| #Preventive | #Confidentiality #Integrity #Availability | #Protect | #Secure_configuration | #Protection |
-
-
**Control**
Rules for the effective use of cryptography, including cryptographic key management, should be defined and implemented.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.25-Secure-development-life-cycle.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.25-Secure-development-life-cycle.md
index 883039d..aa4e507 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.25-Secure-development-life-cycle.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.25-Secure-development-life-cycle.md
@@ -24,12 +24,6 @@ status: active
## 8.25 Secure development life cycle
-| Control type | Information security properties | Cybersecurity concepts | Operational capabilities | Security domains |
-| ------------ | ----------------------------------------- | ---------------------- | -------------------------------------------------- | ---------------- |
-| #Preventive | #Confidentiality #Integrity #Availability | #Protect | #Application_security #System_and_network_security | #Protection |
-
-
-
**Control**
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.27-Secure-system-architecture-and-engineering-principles.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.27-Secure-system-architecture-and-engineering-principles.md
index 35d58c5..40290df 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.27-Secure-system-architecture-and-engineering-principles.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.27-Secure-system-architecture-and-engineering-principles.md
@@ -24,10 +24,6 @@ status: active
## 8.27 Secure system architecture and engineering principles
-| Control type | Information security properties | Cybersecurity concepts | Operational capabilities | Security domains |
-| ------------ | ----------------------------------------- | ---------------------- | -------------------------------------------------- | ---------------- |
-| #Preventive | #Confidentiality #Integrity #Availability | #Protect | #Application_security #System_and_network_security | #Protection |
-
**Control**
Principles for engineering secure systems should be established, documented, maintained and applied to any information system development activities.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.29-Security-testing-in-development-and-acceptance.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.29-Security-testing-in-development-and-acceptance.md
index 2a76fea..bd27fc8 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.29-Security-testing-in-development-and-acceptance.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.29-Security-testing-in-development-and-acceptance.md
@@ -25,10 +25,6 @@ status: active
## 8.29 Security testing in development and acceptance
-| Control type | Information security properties | Cybersecurity concepts | Operational capabilities | Security domains |
-| ------------ | ----------------------------------------- | ---------------------- | ---------------------------------------------------------------------------------- | ---------------- |
-| #Preventive | #Confidentiality #Integrity #Availability | #Identify | #Application_security #Information_security_assurance #System_and_network_security | #Protection |
-
**Control**
Security testing processes should be defined and implemented in the development life cycle.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.3-Information-access-restriction.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.3-Information-access-restriction.md
index 03bd068..345a7f8 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.3-Information-access-restriction.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.3-Information-access-restriction.md
@@ -22,10 +22,6 @@ status: active
## 8.3 Information access restriction
-| Control type | Information security properties | Cybersecurity concepts | Operational capabilities | Security domains |
-| ------------ | ----------------------------------------- | ---------------------- | ------------------------------- | ---------------- |
-| #Preventive | #Confidentiality #Integrity #Availability | #Protect | #Identity_and_access_management | #Protection |
-
**Control**
Access to information and other associated assets should be restricted in accordance with the established topic-specific policy on access control.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.30-Outsourced-development.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.30-Outsourced-development.md
index 522cf96..021b710 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.30-Outsourced-development.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.30-Outsourced-development.md
@@ -32,10 +32,6 @@ status: active
## 8.30 Outsourced development
-| Control type | Information security properties | Cybersecurity concepts | Operational capabilities | Security domains |
-| :--------------------- | :------------------------------------------- | :---------------------------- | :---------------------------------------------------------------------------------- | :------------------------------------ |
-| #Preventive #Detective | #Confidentiality
#Integrity #Availability | #Identify #Protect
#Detect | #System_and_network_security #Application_security #Supplier_relationships_security | #Governance_and_Ecosystem #Protection |
-
**Control**
The organization should direct, monitor and review the activities related to outsourced system development.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.31-Separation-of-development-test-and-production-environments.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.31-Separation-of-development-test-and-production-environments.md
index 4a1a161..cad5416 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.31-Separation-of-development-test-and-production-environments.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.31-Separation-of-development-test-and-production-environments.md
@@ -24,10 +24,6 @@ status: active
## 8.31 Separation of development, test and production environments
-| Control type | Information security properties | Cybersecurity concepts | Operational capabilities | Security domains |
-| --- | --- | --- | --- | --- |
-| #Preventive | #Confidentiality #Integrity #Availability | #Protect | #Application_security #System_and_network_security | #Protection |
-
**Control**
Development, testing and production environments should be separated and secured.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.32-Change-management.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.32-Change-management.md
index 43eeb3a..f717616 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.32-Change-management.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.32-Change-management.md
@@ -24,10 +24,6 @@ status: active
## 8.32 Change management
-| Control type | Information security properties | Cybersecurity concepts | Operational capabilities | Security domains |
-| ------------ | ----------------------------------------- | ---------------------- | -------------------------------------------------- | ---------------- |
-| #Preventive | #Confidentiality #Integrity #Availability | #Protect | #Application_security #System_and_network_security | #Protection |
-
**Control**
Changes to information processing facilities and information systems should be subject to change management procedures.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.33-Test-information.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.33-Test-information.md
index aaa013d..e9aa2c5 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.33-Test-information.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.33-Test-information.md
@@ -21,10 +21,6 @@ status: active
## 8.33 Test information
-| Control type | Information security properties | Cybersecurity concepts | Operational capabilities | Security domains |
-| ------------ | ------------------------------- | ---------------------- | ------------------------ | ---------------- |
-| #Preventive | #Confidentiality #Integrity | #Protect | #Information_protection | #Protection |
-
**Control**
Test information should be appropriately selected, protected and managed.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.34-Protection-of-information-systems-during-audit-testing.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.34-Protection-of-information-systems-during-audit-testing.md
index 65b607f..5d0736e 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.34-Protection-of-information-systems-during-audit-testing.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.34-Protection-of-information-systems-during-audit-testing.md
@@ -26,10 +26,6 @@ status: active
## 8.34 Protection of information systems during audit testing
-| Control type | Information security properties | Cybersecurity concepts | Operational capabilities | Security domains |
-| --- | --- | --- | --- | --- |
-| #Preventive | #Confidentiality #Integrity #Availability | #Protect | #System_and_network_security #Information_protection | #Governance_and_Ecosystem #Protection |
-
**Control**
Audit tests and other assurance activities involving assessment of operational systems should be planned and agreed between the tester and appropriate management.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.4-Access-to-source-code.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.4-Access-to-source-code.md
index f2e93b9..02454d4 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.4-Access-to-source-code.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.4-Access-to-source-code.md
@@ -25,10 +25,6 @@ status: active
## 8.4 Access to source code
-| Control type | Information security properties | Cybersecurity concepts | Operational capabilities | Security domains |
-| ------------ | ----------------------------------------- | ---------------------- | --------------------------------------------------------------------------- | ---------------- |
-| #Preventive | #Confidentiality #Integrity #Availability | #Protect | #Identity_and_access_management #Application_security #Secure_configuration | #Protection |
-
**Control**
Read and write access to source code, development tools and software libraries should be appropriately managed.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.5-Secure-authentication.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.5-Secure-authentication.md
index cbedf76..d51b1f5 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.5-Secure-authentication.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.5-Secure-authentication.md
@@ -22,10 +22,6 @@ status: active
## 8.5 Secure authentication
-| Control type | Information security properties | Cybersecurity concepts | Operational capabilities | Security domains |
-| ------------ | ----------------------------------------- | ---------------------- | ------------------------------- | ---------------- |
-| #Preventive | #Confidentiality #Integrity #Availability | #Protect | #Identity_and_access_management | #Protection |
-
**Control**
Secure authentication technologies and procedures should be implemented based on information access restrictions and the topic-specific policy on access control.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.6-Capacity-management.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.6-Capacity-management.md
index 581e3f4..c9ef893 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.6-Capacity-management.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.6-Capacity-management.md
@@ -28,10 +28,6 @@ status: active
## 8.6 Capacity management
-| Control type | Information security properties | Cybersecurity concepts | Operational capabilities | Security domains |
-| ---------------------- | ------------------------------- | -------------------------- | ------------------------ | ------------------------------------- |
-| #Preventive #Detective | #Integrity #Availability | #Identify #Protect #Detect | #Continuity | #Governance_and_Ecosystem #Protection |
-
**Control**
The use of resources should be monitored and adjusted in line with current and expected capacity requirements.
diff --git a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.8-Management-of-technical-vulnerabilities.md b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.8-Management-of-technical-vulnerabilities.md
index b925101..90ae9d4 100644
--- a/Corpus/Standards/ISO27x/OST/27002/EN/a-8.8-Management-of-technical-vulnerabilities.md
+++ b/Corpus/Standards/ISO27x/OST/27002/EN/a-8.8-Management-of-technical-vulnerabilities.md
@@ -30,14 +30,6 @@ status: active
-| Control type | Information security properties | Cybersecurity concepts | Operational capabilities | Security domains |
-
-| -------------- | ---------------------------------------- | --------------------- | ------------------------------- | ------------------------------- |
-
-| #Preventive | #Confidentiality #Integrity #Availability | #Identify #Protect | #Threat_and_vulnerability_management | #Governance_and_Ecosystem #Protection #Defence |
-
-
-
**Control**