Skip to content

Commit

Permalink
fixed bad chars in asciidoc (#429)
Browse files Browse the repository at this point in the history
  • Loading branch information
gregw authored Oct 20, 2021
1 parent edc4874 commit 2cf8f91
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions spec/src/main/asciidoc/servlet-spec-body.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -1388,8 +1388,8 @@ If suspicious sequences are discovered during the prior processing steps, the re
| `/foo/bar/;jsessionid=1234` | `/foo/bar/` |
| `/foo;/bar;` | `/foo/bar` |
| `/foo;/bar;/;` | `/foo/bar/` |
| `/foo%00/bar/` | `/foo
| `/foo%7Fbar` | `/foobar` | 400 control character
| `/foo%00/bar/` | `/foo[NUL]/bar/` | 400 control character
| `/foo%7Fbar` | `/foo[DEL]bar` | 400 control character
| `/foo%2Fbar` | `/foo%2Fbar` | 400 encoded /
| `/foo%2Fb%25r` | `/foo%2Fb%25r` | 400 encoded /
| `/foo/b%25r` | `/foo/b%r` |
Expand Down Expand Up @@ -1424,7 +1424,7 @@ If suspicious sequences are discovered during the prior processing steps, the re
| `/foo/bar/..;` | `/foo` | 400 dot segment with parameter
| `/foo/bar/../;` | `/foo/` |
| `/foo/..bar` | `/foo/..bar` |
| `/foo/.../bar` | `/foo/.../bar` |
| `/foo/pass:[...]/bar` | `/foo/pass:[...]/bar` |
| `/foo//bar` | `/foo/bar` |
| `//foo//bar//` | `/foo/bar/` |
| `/;/foo;/;/bar/;/;` | `/foo/bar/` | 400 empty segment with parameters
Expand Down

0 comments on commit 2cf8f91

Please sign in to comment.