├── .gitignore ├── 404.html ├── Gemfile ├── _config.yml ├── _data └── ow_attributions.json ├── assets └── images │ ├── Cybozu.png │ ├── Fastly_logo_2020.jpg │ ├── OWASP-Application-Security-Verification-Standard-4.0-ja.pdf │ ├── OWASP20thAnniversary.jpeg │ ├── README.md │ ├── SCSK-Security_J_B2.jpg │ ├── owasp-japan-katakana.png │ ├── snyk.png │ └── techmatrix.png ├── index.md ├── info.md ├── leaders.md ├── secreq ├── OWASP_WebApplicationSecurityRequirements.pdf ├── OWASP_WebApplicationSecurityRequirements.xlsx ├── OWASP_WebApplicationSecurityRequirements_diff.pdf └── README.md ├── skillmap_project ├── About-Pentester-Platform-Skillmap_and_Syllabus-201604.pdf ├── About-Skillmap_and_Syllabus.md ├── Pentester-Platform-Skillmap_and_Syllabus-201604.pdf ├── Pentester-Platform-Skillmap_and_Syllabus-2021.pdf ├── Pentester-Platform-Skillmap_and_Syllabus-2021.xlsx ├── README.md ├── Security in Agile Software Development.md ├── Security in Agile Software Development_EN.md ├── Vulnerability_Disclosure_Cheat_Sheet_ja.md └── code_of_ethics.md ├── tab_event.md ├── tab_example.md └── tab_skillmap_project.md /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | env 3 | .vscode 4 | .DS_Store 5 | 6 | _site/ 7 | -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-chapter-japan/HEAD/404.html -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-chapter-japan/HEAD/Gemfile -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-chapter-japan/HEAD/_config.yml -------------------------------------------------------------------------------- /_data/ow_attributions.json: -------------------------------------------------------------------------------- 1 | ["Sho Kobayashi"] -------------------------------------------------------------------------------- /assets/images/Cybozu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-chapter-japan/HEAD/assets/images/Cybozu.png -------------------------------------------------------------------------------- /assets/images/Fastly_logo_2020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-chapter-japan/HEAD/assets/images/Fastly_logo_2020.jpg -------------------------------------------------------------------------------- /assets/images/OWASP-Application-Security-Verification-Standard-4.0-ja.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-chapter-japan/HEAD/assets/images/OWASP-Application-Security-Verification-Standard-4.0-ja.pdf -------------------------------------------------------------------------------- /assets/images/OWASP20thAnniversary.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-chapter-japan/HEAD/assets/images/OWASP20thAnniversary.jpeg -------------------------------------------------------------------------------- /assets/images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-chapter-japan/HEAD/assets/images/README.md -------------------------------------------------------------------------------- /assets/images/SCSK-Security_J_B2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-chapter-japan/HEAD/assets/images/SCSK-Security_J_B2.jpg -------------------------------------------------------------------------------- /assets/images/owasp-japan-katakana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-chapter-japan/HEAD/assets/images/owasp-japan-katakana.png -------------------------------------------------------------------------------- /assets/images/snyk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-chapter-japan/HEAD/assets/images/snyk.png -------------------------------------------------------------------------------- /assets/images/techmatrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-chapter-japan/HEAD/assets/images/techmatrix.png -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-chapter-japan/HEAD/index.md -------------------------------------------------------------------------------- /info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-chapter-japan/HEAD/info.md -------------------------------------------------------------------------------- /leaders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-chapter-japan/HEAD/leaders.md -------------------------------------------------------------------------------- /secreq/OWASP_WebApplicationSecurityRequirements.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-chapter-japan/HEAD/secreq/OWASP_WebApplicationSecurityRequirements.pdf -------------------------------------------------------------------------------- /secreq/OWASP_WebApplicationSecurityRequirements.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-chapter-japan/HEAD/secreq/OWASP_WebApplicationSecurityRequirements.xlsx -------------------------------------------------------------------------------- /secreq/OWASP_WebApplicationSecurityRequirements_diff.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-chapter-japan/HEAD/secreq/OWASP_WebApplicationSecurityRequirements_diff.pdf -------------------------------------------------------------------------------- /secreq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-chapter-japan/HEAD/secreq/README.md -------------------------------------------------------------------------------- /skillmap_project/About-Pentester-Platform-Skillmap_and_Syllabus-201604.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-chapter-japan/HEAD/skillmap_project/About-Pentester-Platform-Skillmap_and_Syllabus-201604.pdf -------------------------------------------------------------------------------- /skillmap_project/About-Skillmap_and_Syllabus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-chapter-japan/HEAD/skillmap_project/About-Skillmap_and_Syllabus.md -------------------------------------------------------------------------------- /skillmap_project/Pentester-Platform-Skillmap_and_Syllabus-201604.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-chapter-japan/HEAD/skillmap_project/Pentester-Platform-Skillmap_and_Syllabus-201604.pdf -------------------------------------------------------------------------------- /skillmap_project/Pentester-Platform-Skillmap_and_Syllabus-2021.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-chapter-japan/HEAD/skillmap_project/Pentester-Platform-Skillmap_and_Syllabus-2021.pdf -------------------------------------------------------------------------------- /skillmap_project/Pentester-Platform-Skillmap_and_Syllabus-2021.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-chapter-japan/HEAD/skillmap_project/Pentester-Platform-Skillmap_and_Syllabus-2021.xlsx -------------------------------------------------------------------------------- /skillmap_project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-chapter-japan/HEAD/skillmap_project/README.md -------------------------------------------------------------------------------- /skillmap_project/Security in Agile Software Development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-chapter-japan/HEAD/skillmap_project/Security in Agile Software Development.md -------------------------------------------------------------------------------- /skillmap_project/Security in Agile Software Development_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-chapter-japan/HEAD/skillmap_project/Security in Agile Software Development_EN.md -------------------------------------------------------------------------------- /skillmap_project/Vulnerability_Disclosure_Cheat_Sheet_ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-chapter-japan/HEAD/skillmap_project/Vulnerability_Disclosure_Cheat_Sheet_ja.md -------------------------------------------------------------------------------- /skillmap_project/code_of_ethics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-chapter-japan/HEAD/skillmap_project/code_of_ethics.md -------------------------------------------------------------------------------- /tab_event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-chapter-japan/HEAD/tab_event.md -------------------------------------------------------------------------------- /tab_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-chapter-japan/HEAD/tab_example.md -------------------------------------------------------------------------------- /tab_skillmap_project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/www-chapter-japan/HEAD/tab_skillmap_project.md --------------------------------------------------------------------------------