layout | title |
---|---|
col-sidebar |
OWASP Community Pages |
OWASP Community Pages is a place where OWASP can accept community contributions for security-related content. To contribute, go to the repository for this site. Go into the pages folder and create a new file. Save and commit the file.
Include the following front matter in your file (for examples, see pages/password-special-characters.md in this repository):
---
layout: col-sidebar
title: [title of page]
author: [author name]
contributors: [contributors]
permalink: [direct link to page, removes /pages]
tags: [Attacks, XSS, etc]
---
{% assign pages = site.pages | sort: 'date' | limit: 10 %} {% for page in pages %} {% if page.path contains 'pages/' %}
- [{{ page.title }}](/www-community{{ page.url }}){% if page.author %} by {{ page.author }}{% endif %} {% endif %} {% endfor %}