diff --git a/.github/workflows/validate-owasp-metadata.yaml b/.github/workflows/validate-owasp-metadata.yaml new file mode 100644 index 0000000..45d5a03 --- /dev/null +++ b/.github/workflows/validate-owasp-metadata.yaml @@ -0,0 +1,24 @@ +name: Validate OWASP entity metadata + +on: + pull_request: + paths: + - '*.owasp.yaml' + push: + paths: + - '*.owasp.yaml' + +concurrency: + cancel-in-progress: true + group: ${{ github.repository }}-${{ github.workflow }}-${{ github.ref }} + +jobs: + validate-metadata: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v5 + + - name: Validate metadata file + uses: owasp/nest-schema/.github/actions/validate@a733198b4a942eb12d3ee8629cd9e0d409b1b2b9 diff --git a/project.owasp.yaml b/project.owasp.yaml new file mode 100644 index 0000000..8e46b93 --- /dev/null +++ b/project.owasp.yaml @@ -0,0 +1,32 @@ +audience: + - breaker + - builder +leaders: + - name: Azzeddine RAMRAMI + email: azzeddine.ramrami@owasp.org + github: aramrami + - name: Istvan Albert-Toth + email: istvan.alberttoth@owasp.org + - name: Sébastien Gioria + email: sebastien.gioria@owasp.org + github: SPoint42 +level: 4 +license: + - BSD-3-Clause +name: OWASP CSRFGuard +pitch: OWASP CSRFGuard is a library that implements a variant of the synchronizer token pattern to mitigate the risk of Cross-Site Request Forgery (CSRF) + attacks. +repositories: + - name: www-project-csrfguard + url: https://github.com/OWASP/www-project-csrfguard + description: The aim of this project is to protect Java applications against CSRF attacks with the use of Synchronizer Tokens + - name: OWASP-CSRFGuard + url: https://github.com/aramrami/OWASP-CSRFGuard + description: OWASP CSRFGuard 3.1.0 +tags: + - csrfguard + - defenders + - breakers + - vulnerability-management +type: tool +website: https://owasp.org/www-project-csrfguard