diff --git a/.github/workflows/check-md-links.yml b/.github/workflows/check-md-links.yml index bd7b896..18e20a1 100644 --- a/.github/workflows/check-md-links.yml +++ b/.github/workflows/check-md-links.yml @@ -13,3 +13,4 @@ jobs: with: use-quiet-mode: 'yes' use-verbose-mode: 'yes' + config-file: 'mlc_config.json' diff --git a/.github/workflows/check-spell.yml b/.github/workflows/check-spell.yml index f069876..e4771e7 100644 --- a/.github/workflows/check-spell.yml +++ b/.github/workflows/check-spell.yml @@ -7,6 +7,6 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: - node-version: '16' + node-version: '20' - run: npm install -g cspell - - run: cspell "**/*.md" \ No newline at end of file + - run: cspell "**/*.md" diff --git a/green/treatment-of-vulnerabilities-with-severity-high-or-higher.md b/green/treatment-of-vulnerabilities-with-severity-high-or-higher.md index ed5d089..270002c 100644 --- a/green/treatment-of-vulnerabilities-with-severity-high-or-higher.md +++ b/green/treatment-of-vulnerabilities-with-severity-high-or-higher.md @@ -26,6 +26,6 @@ ## Further Readings -- Literature: [OWASP Security Knowledge Framework](https://owasp.org/www-project-security-knowledge-framework/) +- Literature: [Security Knowledge Framework](https://www.securityknowledgeframework.org/)

Send Feedback

diff --git a/mlc_config.json b/mlc_config.json new file mode 100644 index 0000000..2c85a46 --- /dev/null +++ b/mlc_config.json @@ -0,0 +1,3 @@ +{ + "aliveStatusCodes": [200, 206, 403] +} diff --git a/orange/follow-security-by-design-principles.md b/orange/follow-security-by-design-principles.md index 421d9b1..f653cee 100644 --- a/orange/follow-security-by-design-principles.md +++ b/orange/follow-security-by-design-principles.md @@ -46,7 +46,7 @@ When implementing this principle: ## Further Readings - [Security design with principles](https://medium.com/ouspg/security-design-with-principles-a8c045765b93) -- [MITRE - Cyber Resiliency Design Principles](https://www.mitre.org/sites/default/files/publications/PR%2017-0103%20Cyber%20Resiliency%20Design%20Principles%20MTR17001.pdf) +- [MITRE - Cyber Resiliency Design Principles](https://www.mitre.org/sites/default/files/2021-11/pr-17-0103-Cyber-Resiliency-Design-Principles.pdf) - [Agile Modellgetriebene Entwicklung von Software Security & Privacy - page 14 (german)](https://se-rwth.de/phdtheses/Diss-Hermerschmidt-Agile-Modellgetriebene-Entwicklung-von-Software-Security-and-Privacy.pdf)

Send Feedback