Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout markdown
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1

- name: Link Checker
uses: lycheeverse/lychee-action@8646ba30535128ac92d33dfc9133794bfdd9b411
uses: lycheeverse/lychee-action@e7477775783ea5526144ba13e8db5eec57747ce8
with:
args: >-
--verbose
Expand All @@ -43,10 +43,10 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout markdown
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1

- name: Lint markdown
uses: DavidAnson/markdownlint-cli2-action@ded1f9488f68a970bc66ea5619e13e9b52e601cd # v23.2.0
uses: DavidAnson/markdownlint-cli2-action@21c1be1b93ad9ed58fa840aacc3f279cde2a72ff # v24.2.0
with:
config: '.markdownlint.yaml'
globs: |
Expand All @@ -59,7 +59,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout markdown
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1

- name: Spell check EN language
uses: rojopolis/spellcheck-github-actions@e619e00ca22f01ade9d73048dcd6518bedc552f2 # 0.63.0
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
needs: [md_linter, spell_checker]
steps:
- name: Checkout markdown
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1

- name: Install python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
needs: [md_linter, spell_checker]
steps:
- name: Checkout markdown
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1

- name: Install python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/housekeeping.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
keep_minimum_runs: 10

- name: Delete unused workflows
uses: otto-de/purge-deprecated-workflow-runs@4781dc30eb7236b195e896b9a26b14296341b63a # v4.0.10
uses: otto-de/purge-deprecated-workflow-runs@c1c15cf4f591945ca017d41f04758773b74de629 # v4.0.13
with:
token: ${{ github.token }}

Expand All @@ -35,10 +35,10 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout markdown
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1

- name: Link Checker
uses: lycheeverse/lychee-action@8646ba30535128ac92d33dfc9133794bfdd9b411 # v2.8.0
uses: lycheeverse/lychee-action@e7477775783ea5526144ba13e8db5eec57747ce8 # v2.9.0
with:
# skip the jekyll files under '_includes' directory, check all other directories
args: >-
Expand All @@ -63,7 +63,7 @@ jobs:

steps:
- name: Tidy stale PRs and issues
uses: actions/stale@eb5cf3af3ac0a1aa4c9c45633dd1ae542a27a899 # v10.3.0
uses: actions/stale@1e223db275d687790206a7acac4d1a11bd6fe629 # v10.4.0
with:
days-before-issue-stale: 183
days-before-issue-close: -1
Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout markdown
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1

- name: Link Checker
uses: lycheeverse/lychee-action@8646ba30535128ac92d33dfc9133794bfdd9b411
uses: lycheeverse/lychee-action@e7477775783ea5526144ba13e8db5eec57747ce8
with:
args: >-
--exclude 'github\.com/OWASP/DevGuide/blob/main/docs'
Expand All @@ -37,10 +37,10 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout markdown
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1

- name: Lint markdown
uses: DavidAnson/markdownlint-cli2-action@ded1f9488f68a970bc66ea5619e13e9b52e601cd # v23.2.0
uses: DavidAnson/markdownlint-cli2-action@21c1be1b93ad9ed58fa840aacc3f279cde2a72ff # v24.2.0
with:
config: '.markdownlint.yaml'
globs: |
Expand All @@ -53,7 +53,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout markdown
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1

- name: Spell check EN language
uses: rojopolis/spellcheck-github-actions@e619e00ca22f01ade9d73048dcd6518bedc552f2 # 0.63.0
Expand All @@ -65,7 +65,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout markdown
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1

- name: Spell check ES language
uses: rojopolis/spellcheck-github-actions@e619e00ca22f01ade9d73048dcd6518bedc552f2 # 0.63.0
Expand All @@ -77,12 +77,12 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout markdown
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1

# rojopolis/spellcheck-github-actions does not support PT-BR,
# only PT, and PT-BR is too different to pass a PT spellcheck
- name: Set up Python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: '3.10'

Expand All @@ -102,10 +102,10 @@ jobs:
needs: [md_linter, spell_checker_en, spell_checker_es, spell_checker_pt-br]
steps:
- name: Checkout markdown
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1

- name: Install python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: 3.x

Expand Down Expand Up @@ -133,10 +133,10 @@ jobs:
needs: [build_check]
steps:
- name: Checkout markdown
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1

- name: Install python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: 3.x

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout markdown
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1

- name: Install python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: 3.x

Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
needs: [export_pdf]
steps:
- name: Check out
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1

- name: Fetch prepared SBOM artifacts
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c
Expand All @@ -60,7 +60,7 @@ jobs:
sed -e s/x.x.x/${releaseVersion:1}/g .release-note-template.md > ./release-notes.txt

- name: Create release notes
uses: softprops/action-gh-release@718ea10b132b3b2eba29c1007bb80653f286566b # v3.0.1
uses: softprops/action-gh-release@3d0d9888cb7fd7b750713d6e236d1fcb99157228 # v3.0.2
with:
draft: true
name: "${releaseVersion:1}"
Expand Down
5 changes: 5 additions & 0 deletions .lycheeignore
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,8 @@ www.opencre.org
# don't irritate the US government
nvd.nist.gov/

# SKF has a habit of not renewing its SSL cert
www.securityknowledgeframework.org

# Slack tends to block bots, but not always
owasp.slack.com
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,6 @@ then [submit an issue][issue040107] or [edit on GitHub][edit040107].
[tmmanifesto]: https://www.threatmodelingmanifesto.org/
[tmcommunity]: https://owasp.org/www-community/Threat_Modeling
[tmprocess]: https://owasp.org/www-community/Threat_Modeling_Process
[TMdesigning]: https://shostack.org/books/threat-modeling-book
[TMdesigning]: https://shostack.org/books/threat-modeling-book-2nd-edition
[TMpractical]: https://threatmodeling.dev/
[TMT]: https://learn.microsoft.com/en-us/azure/security/develop/threat-modeling-tool
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,4 @@ then [submit an issue][issue050304] or [edit on GitHub][edit050304].
[json-sanitizer]: https://github.com/OWASP/json-sanitizer/releases/latest/
[json-sanitizer-dependents]: https://central.sonatype.com/artifact/com.mikesamuel/json-sanitizer/dependents
[json-sanitizer-usage]: https://github.com/OWASP/json-sanitizer/blob/master/docs/getting_started.md
[rfc4627]: https://www.ietf.org/rfc/rfc4627.txt
[rfc4627]: https://www.rfc-editor.org/rfc/rfc4627.txt
12 changes: 6 additions & 6 deletions docs/en/05-implementation/04-maswe.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ The MASWE is split out into weakness categories that correspond to the [MASVS][m

* [MASVS-STORAGE](https://mas.owasp.org/MASWE/MASVS-STORAGE/MASWE-0001/) sensitive data storage
* [MASVS-CRYPTO](https://mas.owasp.org/MASWE/MASVS-CRYPTO/MASWE-0009/) cryptography best practices
* [MASVS-AUTH](https://mas.owasp.org/MASWE/MASVS-AUTH/MASWE-0028/) authentication and authorization mechanisms
* [MASVS-NETWORK](https://mas.owasp.org/MASWE/MASVS-NETWORK/MASWE-0047/) network communications
* [MASVS-PLATFORM](https://mas.owasp.org/MASWE/MASVS-PLATFORM/MASWE-0053/) interactions with the mobile platform
* [MASVS-CODE](https://mas.owasp.org/MASWE/MASVS-CODE/MASWE-0075/) platform and third-party software
* [MASVS-RESILIENCE](https://mas.owasp.org/MASWE/MASVS-RESILIENCE/MASWE-0089/) integrity and running on a trusted platform
* [MASVS-PRIVACY](https://mas.owasp.org/MASWE/MASVS-PRIVACY/MASWE-0108/) privacy of users, data and resources
* [MASVS-AUTH](https://mas.owasp.org/MASWE/MASVS-AUTH/MASWE-0018/) authentication and authorization mechanisms
* [MASVS-NETWORK](https://mas.owasp.org/MASWE/MASVS-NETWORK/MASWE-0026/) network communications
* [MASVS-PLATFORM](https://mas.owasp.org/MASWE/MASVS-PLATFORM/MASWE-0029/) interactions with the mobile platform
* [MASVS-CODE](https://mas.owasp.org/MASWE/MASVS-CODE/MASWE-0041/) platform and third-party software
* [MASVS-RESILIENCE](https://mas.owasp.org/MASWE/MASVS-RESILIENCE/MASWE-0051/) integrity and running on a trusted platform
* [MASVS-PRIVACY](https://mas.owasp.org/MASWE/MASVS-PRIVACY/MASWE-0066/) privacy of users, data and resources

#### Why use it?

Expand Down
2 changes: 1 addition & 1 deletion docs/es/04-design/01-threat-modeling/01-threat-modeling.md
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,6 @@ La Guía del Desarrollador de OWASP es un esfuerzo comunitario; si hay algo que
[tmmanifesto]: https://www.threatmodelingmanifesto.org/
[TM]: https://owasp.org/www-community/Threat_Modeling
[TMP]: https://owasp.org/www-community/Threat_Modeling_Process
[TMdesigning]: https://shostack.org/books/threat-modeling-book
[TMdesigning]: https://shostack.org/books/threat-modeling-book-2nd-edition
[TMpractical]: https://threatmodeling.dev/
[TMT]: https://learn.microsoft.com/en-us/azure/security/develop/threat-modeling-tool
12 changes: 6 additions & 6 deletions docs/es/05-implementation/04-maswe.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ El MASWE se divide en categorías de debilidades que corresponden a las categor

* [MASVS-STORAGE](https://mas.owasp.org/MASWE/MASVS-STORAGE/MASWE-0001/) almacenamiento de datos sensibles
* [MASVS-CRYPTO](https://mas.owasp.org/MASWE/MASVS-CRYPTO/MASWE-0009/) mejores prácticas de criptografía
* [MASVS-AUTH](https://mas.owasp.org/MASWE/MASVS-AUTH/MASWE-0028/) mecanismos de autenticación y autorización
* [MASVS-NETWORK](https://mas.owasp.org/MASWE/MASVS-NETWORK/MASWE-0047/) comunicaciones de red
* [MASVS-PLATFORM](https://mas.owasp.org/MASWE/MASVS-PLATFORM/MASWE-0053/) interacciones con la plataforma móvil
* [MASVS-CODE](https://mas.owasp.org/MASWE/MASVS-CODE/MASWE-0075/) plataforma y software de terceros
* [MASVS-RESILIENCE](https://mas.owasp.org/MASWE/MASVS-RESILIENCE/MASWE-0089/) integridad
* [MASVS-AUTH](https://mas.owasp.org/MASWE/MASVS-AUTH/MASWE-0018/) mecanismos de autenticación y autorización
* [MASVS-NETWORK](https://mas.owasp.org/MASWE/MASVS-NETWORK/MASWE-0026/) comunicaciones de red
* [MASVS-PLATFORM](https://mas.owasp.org/MASWE/MASVS-PLATFORM/MASWE-0029/) interacciones con la plataforma móvil
* [MASVS-CODE](https://mas.owasp.org/MASWE/MASVS-CODE/MASWE-0041/) plataforma y software de terceros
* [MASVS-RESILIENCE](https://mas.owasp.org/MASWE/MASVS-RESILIENCE/MASWE-0051/) integridad
y ejecución en una plataforma confiable
* [MASVS-PRIVACY](https://mas.owasp.org/MASWE/MASVS-PRIVACY/MASWE-0108/) privacidad de usuarios, datos y recursos
* [MASVS-PRIVACY](https://mas.owasp.org/MASWE/MASVS-PRIVACY/MASWE-0066/) privacidad de usuarios, datos y recursos

#### ¿Por qué usarlo?

Expand Down
Loading