FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

[3.8] gh-121650: Encode newlines in headers, and verify headers are sound (GH-122233) by ambv · Pull Request #122611 · python/cpython · GitHub

/ cpython Public

[3.8] gh-121650: Encode newlines in headers, and verify headers are sound (GH-122233) - #122611

Merged
ambv merged 4 commits into
python:3.8from
ambv:backport-0976339-3.8
Sep 4, 2024
Merged

[3.8] gh-121650: Encode newlines in headers, and verify headers are sound (GH-122233)#122611
ambv merged 4 commits into
python:3.8from
ambv:backport-0976339-3.8

Conversation

ambv commented Aug 2, 2024
edited by bedevere-app Bot
Loading

Copy link
Copy Markdown
Contributor

Per RFC 2047:

[...] these encoding schemes allow the
encoding of arbitrary octet values, mail readers that implement this
decoding should also ensure that display of the decoded data on the
recipient's terminal will not cause unwanted side-effects

It seems that the "quoted-word" scheme is a valid way to include a newline character in a header value, just like we already allow undecodable bytes or control characters.
They do need to be properly quoted when serialized to text, though.

This should fail for custom fold() implementations that aren't careful about newlines.

(cherry picked from commit 0976339)

… are sound (pythonGH-122233)

Per RFC 2047:

> [...] these encoding schemes allow the
> encoding of arbitrary octet values, mail readers that implement this
> decoding should also ensure that display of the decoded data on the
> recipient's terminal will not cause unwanted side-effects

It seems that the "quoted-word" scheme is a valid way to include
a newline character in a header value, just like we already allow
undecodable bytes or control characters.
They do need to be properly quoted when serialized to text, though.

This should fail for custom fold() implementations that aren't careful
about newlines.

(cherry picked from commit 0976339)

Co-authored-by: Petr Viktorin <encukou@gmail.com>
Co-authored-by: Bas Bloemsaat <bas@bloemsaat.org>
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>

vstinner commented Sep 2, 2024

Copy link
Copy Markdown
Member

Sadly, the build fails on macOS:

checking for gcc... clang
checking whether the C compiler works... no

configure: error: in `/Users/runner/work/cpython/cpython':
configure: error: C compiler cannot create executables
See `config.log' for more details

vstinner left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Choose a reason Spam Abuse Off Topic Outdated Duplicate Resolved Low Quality

LGTM: straightforward backport and the change is properly documented as .. versionadded:: 3.8.20 with "Notable changes in 3.8.20" in What's New in Python 3.8. I compared this 3.8 change to the change in the main branch.

ambv merged commit b158a76 into python:3.8 Sep 4, 2024
ambv deleted the backport-0976339-3.8 branch September 4, 2024 15:39
This file contains hidden or 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants


Back | FazBrowse Home | New Git URL