Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.04 KB

index.md

File metadata and controls

32 lines (24 loc) · 1.04 KB
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] (this is optional and requires some care)
tags: [attack, XSS, etc]

---

Recently Submitted Files

{% assign pages = site.pages | sort: 'date' | limit: 10 %}

    {% for page in pages %} {% if page.path contains 'pages/' and page.name != 'index.md' %}
  • {{ page.title }}{% if page.author %} by {{ page.author }}{% endif %}
  • {% endif %} {% endfor %}