Skip to content

Commit

Permalink
update community pages
Browse files Browse the repository at this point in the history
  • Loading branch information
hblankenship committed Nov 7, 2019
1 parent 5180a90 commit 6ceaeb2
Show file tree
Hide file tree
Showing 5 changed files with 72 additions and 43 deletions.
30 changes: 19 additions & 11 deletions index.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,30 @@
---

layout: col-sidebar
title: OWASP [GROUPNAME]
tags: example-tag
level: 4
type:
title: OWASP Community Pages

---

<!-- rebuild 1 -->
This is an example of a Project or Chapter Page. Please change these items to indicate the actual information you wish to present. In addition to this information, the 'front-matter' above this text should be modified to reflect your actual information. An explanation of each of the front-matter items is below:
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: (https://github.com/OWASP/www-community)
Go into the pages folder and create a new file. Save and commit the file.

layout: This is the layout used by project and chapter pages. You should leave this value as col-sidebar
Include the following front matter in your file (for examples, see pages/password-special-characters.md in this repository):

title: This is the title of your project or chapter page, usually the name. For example, OWASP Zed Attack Proxy or OWASP Baltimore
---

tags: This is a space-delimited list of tags you associate with your project or chapter. If you are using tabs, at least one of these tags should be unique in order to be used in the tabs files (an example tab is included in this repo)
layout: col-sidebar
title: [title of page]
author: [author name]
contributors: [contributors]
permalink: [direct link to page, removes /pages]

level: For projects, this is your project level (2 - Incubator, 3 - Lab, 4 - Flagship)
---

type: For projects, one of documentation, code, or tool
## Recently Submitted Files
{% assign pages = site.pages | sort: 'date' | limit: 10 %}
{% for page in pages %}
{% if page.path contains 'pages/' %}
[{{ page.name }}]({{ page.url }}) by {{ page.author }}
{% endif %}
{% endfor %}
17 changes: 0 additions & 17 deletions info.md

This file was deleted.

4 changes: 0 additions & 4 deletions leaders.md

This file was deleted.

53 changes: 53 additions & 0 deletions pages/password-special-characters.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
---

layout: col-sidebar
title: Password Special Characters
author: Pawel Krawczyk
contributors:
permalink: /password-special-characters

---

## Password special characters is a selection of punctuation characters that are present on standard US keyboard and frequently used in passwords.

| Character | Name | Unicode
| :---: | :---: | :---: |
| | Space | U+0020
| ! | Exclamation | U+0021
| " | Double quote | U+0022
| # | Number sign (hash) | U+0023
| $ | Dollar sign | U+0024
| % | Percent | U+0025
| &amp; | Ampersand | U+0026
| ' | Single quote | U+0027
| ( | Left parenthesis | U+0028
| ) | Right parenthesis | U+0029
| * | Asterisk | U+002A
| + | Plus | U+002B
| , | Comma | U+002C
| - | Minus | U+002D
| . | Full stop | U+002E
| / | Slash | U+002F
| : | Colon | U+003A
| ; | Semicolon | U+003B
| < | Less than | U+003C
| = | Equal sign | U+003D
| > | Greater than | U+003E
| ? | Question mark | U+003F
| @ | At sign | U+0040
| [ | Left bracket | U+005B
| \ | Backslash | U+005C
| ] | Right bracket | U+005D
| ^ | Caret | U+005E
| _ | Underscore | U+005F
| ` | Grave accent (backtick) | U+0060
| { | Left brace | U+007B
| &#124; | Vertical bar | U+007C
| } | Right brace | U+007D
| ~ | Tilde | U+007E

The same list as string (between double quotes): <code>" !"#$%&'()*+,-./:;&lt;=&gt;?@[\]^_`{&#124;}~"</code>

Various operating systems and applications may apply limitations to this set:

* [Oracle Identity Manager and Microsoft Active Directory](http://docs.oracle.com/cd/E11223_01/doc.904/e10429/app_special_char.htm)
11 changes: 0 additions & 11 deletions tab_example.md

This file was deleted.

0 comments on commit 6ceaeb2

Please sign in to comment.