-
Notifications
You must be signed in to change notification settings - Fork 177
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request from GHSA-m5ff-3wj3-8ph4
HTTP header-field stricter validation
- Loading branch information
Showing
6 changed files
with
194 additions
and
25 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
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 |
---|---|---|
|
@@ -34,7 +34,7 @@ | |
|
||
setup( | ||
name="waitress", | ||
version="1.4.0", | ||
version="1.4.1", | ||
author="Zope Foundation and Contributors", | ||
author_email="[email protected]", | ||
maintainer="Pylons Project", | ||
|
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
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,44 @@ | ||
""" | ||
This contains a bunch of RFC7230 definitions and regular expressions that are | ||
needed to properly parse HTTP messages. | ||
""" | ||
|
||
import re | ||
|
||
from .compat import tobytes | ||
|
||
WS = "[ \t]" | ||
OWS = WS + "{0,}?" | ||
RWS = WS + "{1,}?" | ||
BWS = OWS | ||
|
||
# RFC 7230 Section 3.2.6 "Field Value Components": | ||
# tchar = "!" / "#" / "$" / "%" / "&" / "'" / "*" | ||
# / "+" / "-" / "." / "^" / "_" / "`" / "|" / "~" | ||
# / DIGIT / ALPHA | ||
# obs-text = %x80-FF | ||
TCHAR = r"[!#$%&'*+\-.^_`|~0-9A-Za-z]" | ||
OBS_TEXT = r"\x80-\xff" | ||
|
||
TOKEN = TCHAR + "{1,}" | ||
|
||
# RFC 5234 Appendix B.1 "Core Rules": | ||
# VCHAR = %x21-7E | ||
# ; visible (printing) characters | ||
VCHAR = r"\x21-\x7e" | ||
|
||
# header-field = field-name ":" OWS field-value OWS | ||
# field-name = token | ||
# field-value = *( field-content / obs-fold ) | ||
# field-content = field-vchar [ 1*( SP / HTAB ) field-vchar ] | ||
# field-vchar = VCHAR / obs-text | ||
|
||
FIELD_VCHAR = "[" + VCHAR + OBS_TEXT + "]" | ||
FIELD_CONTENT = FIELD_VCHAR + "(" + RWS + FIELD_VCHAR + "){0,}" | ||
FIELD_VALUE = "(" + FIELD_CONTENT + "){0,}" | ||
|
||
HEADER_FIELD = re.compile( | ||
tobytes( | ||
"^(?P<name>" + TOKEN + "):" + OWS + "(?P<value>" + FIELD_VALUE + ")" + OWS + "$" | ||
) | ||
) |
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
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