Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.1 KB

index.md

File metadata and controls

34 lines (25 loc) · 1.1 KB
layout title tags
col-sidebar
OWASP Community Pages
community

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' | where_exp: "page", "page.path contains 'pages/'" | where_exp: "page", "page.name != 'index.md'"%}

    {% for page in pages limit: 10 %}
  • {{ page.title }}{% if page.author %} by {{ page.author }}{% endif %}
  • {% endif %} {% endfor %}