forked from OWASP/www-community
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5180a90
commit 6ceaeb2
Showing
5 changed files
with
72 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 %} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
| & | 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 | ||
| | | Vertical bar | U+007C | ||
| } | Right brace | U+007D | ||
| ~ | Tilde | U+007E | ||
|
||
The same list as string (between double quotes): <code>" !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~"</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) |
This file was deleted.
Oops, something went wrong.