-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix raw req single slash issue (#4955)
* fix raw req single slash issue * fix raw unsafe req single slash issue * commit to last commit * minor
- Loading branch information
1 parent
b687c11
commit e994206
Showing
4 changed files
with
94 additions
and
0 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
13 changes: 13 additions & 0 deletions
13
integration_tests/protocols/http/raw-path-single-slash.yaml
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,13 @@ | ||
id: raw-path-single-slash | ||
|
||
info: | ||
name: Test RAW HTTP Template with single slash | ||
author: pdteam | ||
severity: info | ||
|
||
requests: | ||
- raw: | ||
- | | ||
GET / HTTP/1.1 | ||
Host: {{Hostname}} | ||
Origin: {{BaseURL}} |
15 changes: 15 additions & 0 deletions
15
integration_tests/protocols/http/raw-unsafe-path-single-slash.yaml
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,15 @@ | ||
id: raw-unsafe-path-single-slash | ||
|
||
info: | ||
name: Test RAW Unsafe HTTP Template with single slash | ||
author: pdteam | ||
severity: info | ||
|
||
requests: | ||
- raw: | ||
- |+ | ||
GET / HTTP/1.1 | ||
Host: {{Hostname}} | ||
Origin: {{BaseURL}} | ||
unsafe: true |
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