├── .github ├── dependabot.yaml ├── issue_template │ ├── guide.md │ └── request.md ├── pull_request_template.md └── workflows │ ├── ci.yaml │ └── housekeeping.yaml ├── .gitignore ├── .lycheeignore ├── 404.html ├── Gemfile ├── README.md ├── _config.yml ├── _data ├── draft-en.yaml ├── stable-en.yaml └── stable-es.yaml ├── _includes ├── banner.html ├── breadcrumb.html └── navigation.html ├── assets ├── docs │ ├── OWASP_SCP_Quick_Reference_Guide_v21.doc │ └── OWASP_SCP_Quick_Reference_Guide_v21.pdf └── images │ └── by-sa.svg ├── code_of_conduct.md ├── contributing.md ├── draft-en ├── 01-introduction │ ├── 05-introduction.md │ └── info.md ├── 02-checklist │ ├── 05-checklist.md │ ├── index.md │ └── info.md ├── 03-appendices │ ├── 03-overview.md │ ├── 05-glossary.md │ ├── 07-references.md │ ├── index.md │ └── info.md ├── index.md ├── info.md ├── title.pdf.yaml └── title.yaml ├── index.md ├── info.md ├── leaders.md ├── license.txt ├── security.md ├── stable-en ├── 01-introduction │ ├── 05-introduction.md │ └── info.md ├── 02-checklist │ ├── 05-checklist.md │ ├── index.md │ └── info.md ├── 03-appendices │ ├── 03-overview.md │ ├── 05-glossary.md │ ├── 07-references.md │ ├── index.md │ └── info.md ├── index.md ├── info.md ├── title.pdf.yaml └── title.yaml ├── stable-es ├── 01-introduction │ ├── 05-introduction.md │ └── info.md ├── 02-checklist │ ├── 05-checklist.md │ ├── index.md │ └── info.md ├── 03-appendices │ ├── 03-overview.md │ ├── 05-glossary.md │ ├── 07-references.md │ ├── index.md │ └── info.md ├── index.md ├── info.md ├── title.pdf.yaml └── title.yaml ├── stable-fa ├── 01-introduction │ ├── 05-introduction.md │ └── info.md ├── 02-checklist │ ├── 05-checklist.md │ ├── index.md │ └── info.md ├── 03-appendices │ ├── 03-overview.md │ ├── 05-glossary.md │ ├── 07-references.md │ ├── index.md │ └── info.md ├── index.md ├── info.md ├── title.pdf.yaml └── title.yaml ├── tab_archive.md ├── tab_contributors.md └── tab_download.md /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/issue_template/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/.github/issue_template/guide.md -------------------------------------------------------------------------------- /.github/issue_template/request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/.github/issue_template/request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/housekeeping.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/.github/workflows/housekeeping.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/.gitignore -------------------------------------------------------------------------------- /.lycheeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/.lycheeignore -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/404.html -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/_config.yml -------------------------------------------------------------------------------- /_data/draft-en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/_data/draft-en.yaml -------------------------------------------------------------------------------- /_data/stable-en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/_data/stable-en.yaml -------------------------------------------------------------------------------- /_data/stable-es.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/_data/stable-es.yaml -------------------------------------------------------------------------------- /_includes/banner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/_includes/banner.html -------------------------------------------------------------------------------- /_includes/breadcrumb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/_includes/breadcrumb.html -------------------------------------------------------------------------------- /_includes/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/_includes/navigation.html -------------------------------------------------------------------------------- /assets/docs/OWASP_SCP_Quick_Reference_Guide_v21.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/assets/docs/OWASP_SCP_Quick_Reference_Guide_v21.doc -------------------------------------------------------------------------------- /assets/docs/OWASP_SCP_Quick_Reference_Guide_v21.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/assets/docs/OWASP_SCP_Quick_Reference_Guide_v21.pdf -------------------------------------------------------------------------------- /assets/images/by-sa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/assets/images/by-sa.svg -------------------------------------------------------------------------------- /code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/code_of_conduct.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/contributing.md -------------------------------------------------------------------------------- /draft-en/01-introduction/05-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/draft-en/01-introduction/05-introduction.md -------------------------------------------------------------------------------- /draft-en/01-introduction/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/draft-en/01-introduction/info.md -------------------------------------------------------------------------------- /draft-en/02-checklist/05-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/draft-en/02-checklist/05-checklist.md -------------------------------------------------------------------------------- /draft-en/02-checklist/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/draft-en/02-checklist/index.md -------------------------------------------------------------------------------- /draft-en/02-checklist/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/draft-en/02-checklist/info.md -------------------------------------------------------------------------------- /draft-en/03-appendices/03-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/draft-en/03-appendices/03-overview.md -------------------------------------------------------------------------------- /draft-en/03-appendices/05-glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/draft-en/03-appendices/05-glossary.md -------------------------------------------------------------------------------- /draft-en/03-appendices/07-references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/draft-en/03-appendices/07-references.md -------------------------------------------------------------------------------- /draft-en/03-appendices/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/draft-en/03-appendices/index.md -------------------------------------------------------------------------------- /draft-en/03-appendices/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/draft-en/03-appendices/info.md -------------------------------------------------------------------------------- /draft-en/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/draft-en/index.md -------------------------------------------------------------------------------- /draft-en/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/draft-en/info.md -------------------------------------------------------------------------------- /draft-en/title.pdf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/draft-en/title.pdf.yaml -------------------------------------------------------------------------------- /draft-en/title.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/draft-en/title.yaml -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/index.md -------------------------------------------------------------------------------- /info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/info.md -------------------------------------------------------------------------------- /leaders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/leaders.md -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/license.txt -------------------------------------------------------------------------------- /security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/security.md -------------------------------------------------------------------------------- /stable-en/01-introduction/05-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-en/01-introduction/05-introduction.md -------------------------------------------------------------------------------- /stable-en/01-introduction/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-en/01-introduction/info.md -------------------------------------------------------------------------------- /stable-en/02-checklist/05-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-en/02-checklist/05-checklist.md -------------------------------------------------------------------------------- /stable-en/02-checklist/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-en/02-checklist/index.md -------------------------------------------------------------------------------- /stable-en/02-checklist/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-en/02-checklist/info.md -------------------------------------------------------------------------------- /stable-en/03-appendices/03-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-en/03-appendices/03-overview.md -------------------------------------------------------------------------------- /stable-en/03-appendices/05-glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-en/03-appendices/05-glossary.md -------------------------------------------------------------------------------- /stable-en/03-appendices/07-references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-en/03-appendices/07-references.md -------------------------------------------------------------------------------- /stable-en/03-appendices/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-en/03-appendices/index.md -------------------------------------------------------------------------------- /stable-en/03-appendices/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-en/03-appendices/info.md -------------------------------------------------------------------------------- /stable-en/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-en/index.md -------------------------------------------------------------------------------- /stable-en/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-en/info.md -------------------------------------------------------------------------------- /stable-en/title.pdf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-en/title.pdf.yaml -------------------------------------------------------------------------------- /stable-en/title.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-en/title.yaml -------------------------------------------------------------------------------- /stable-es/01-introduction/05-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-es/01-introduction/05-introduction.md -------------------------------------------------------------------------------- /stable-es/01-introduction/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-es/01-introduction/info.md -------------------------------------------------------------------------------- /stable-es/02-checklist/05-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-es/02-checklist/05-checklist.md -------------------------------------------------------------------------------- /stable-es/02-checklist/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-es/02-checklist/index.md -------------------------------------------------------------------------------- /stable-es/02-checklist/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-es/02-checklist/info.md -------------------------------------------------------------------------------- /stable-es/03-appendices/03-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-es/03-appendices/03-overview.md -------------------------------------------------------------------------------- /stable-es/03-appendices/05-glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-es/03-appendices/05-glossary.md -------------------------------------------------------------------------------- /stable-es/03-appendices/07-references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-es/03-appendices/07-references.md -------------------------------------------------------------------------------- /stable-es/03-appendices/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-es/03-appendices/index.md -------------------------------------------------------------------------------- /stable-es/03-appendices/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-es/03-appendices/info.md -------------------------------------------------------------------------------- /stable-es/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-es/index.md -------------------------------------------------------------------------------- /stable-es/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-es/info.md -------------------------------------------------------------------------------- /stable-es/title.pdf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-es/title.pdf.yaml -------------------------------------------------------------------------------- /stable-es/title.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-es/title.yaml -------------------------------------------------------------------------------- /stable-fa/01-introduction/05-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-fa/01-introduction/05-introduction.md -------------------------------------------------------------------------------- /stable-fa/01-introduction/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-fa/01-introduction/info.md -------------------------------------------------------------------------------- /stable-fa/02-checklist/05-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-fa/02-checklist/05-checklist.md -------------------------------------------------------------------------------- /stable-fa/02-checklist/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-fa/02-checklist/index.md -------------------------------------------------------------------------------- /stable-fa/02-checklist/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-fa/02-checklist/info.md -------------------------------------------------------------------------------- /stable-fa/03-appendices/03-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-fa/03-appendices/03-overview.md -------------------------------------------------------------------------------- /stable-fa/03-appendices/05-glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-fa/03-appendices/05-glossary.md -------------------------------------------------------------------------------- /stable-fa/03-appendices/07-references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-fa/03-appendices/07-references.md -------------------------------------------------------------------------------- /stable-fa/03-appendices/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-fa/03-appendices/index.md -------------------------------------------------------------------------------- /stable-fa/03-appendices/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-fa/03-appendices/info.md -------------------------------------------------------------------------------- /stable-fa/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-fa/index.md -------------------------------------------------------------------------------- /stable-fa/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-fa/info.md -------------------------------------------------------------------------------- /stable-fa/title.pdf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-fa/title.pdf.yaml -------------------------------------------------------------------------------- /stable-fa/title.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/stable-fa/title.yaml -------------------------------------------------------------------------------- /tab_archive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/tab_archive.md -------------------------------------------------------------------------------- /tab_contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/tab_contributors.md -------------------------------------------------------------------------------- /tab_download.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-project-secure-coding-practices-quick-reference-guide/HEAD/tab_download.md --------------------------------------------------------------------------------