| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
Sorry, something went wrong.
|
Before applying #102470: >>> from urllib.parse import urlparse, urlsplit
>>> urlparse(" https://example.com")
ParseResult(scheme='', netloc='', path=' https://example.com', params='', query='', fragment='')After applying #102470: >>> from urllib.parse import urlparse, urlsplit
>>> urlparse(" https://example.com")
ParseResult(scheme='https', netloc='example.com', path='', params='', query='', fragment='') |
Sorry, something went wrong.
|
BTW, this solution is mentioned at the end of the issue finder's article, see: https://pointernull.com/security/python-url-parse-problem.html for more details. |
Sorry, something went wrong.
Yes, I read this article, too. About the leading blank problem, I can solve it using lstrip() function even without reading this article. |
Sorry, something went wrong.
|
As described by @illia-v, I think it is necessary to remove the leading blanks from the URL in urllib.parse. |
Sorry, something went wrong.
Thanks CharlieZhao95
|
i think that the PR of @xiaoge1001 is a good idea, could you review the PR, my brother @gpshead |
Sorry, something went wrong.
|
Hello, is there anyone concerned about this problem? |
Sorry, something went wrong.
|
Thank you for the PRs, someone will review them and let's be patient in the meantime. See also #102153 (comment) |
Sorry, something went wrong.
|
#102508 is more along the lines of what we'll want to consider. I'm closing this one in favor of that. |
Sorry, something went wrong.
|
@gpshead I'm sorry to bother you, but I don't know urllib very well. Can you answer my question? If I use this solution (https://github.com/python/cpython/pull/102470) to fix CVE when I don't think about compatibility, can the CVE be completely fixed? Will other problems be introduced? |
Sorry, something went wrong.
|
We aren't currently confident that we can safely backport a fix to older Python versions as something likely depends on some of the behavior around spaces. That said, this solution likely does work for a lot of code. It is a reasonable recommendation (as I think the blog post suggested?) for people to call .lstrip() themselves on their url before passing it to urlparse from their own code rather than assuming they're running on top of a Python without the issue. The other PR I closed this in favor of will have potentially even more side effects that could impact other uses of urlparse as it removes a wider/different set of characters than lstrip() considers from anywhere in the entire url string. If you do go with this or any of the PRs in your own patched Python interpreter, please let us know how that went. Details like the relative size of your overall Python code base using your patched interpreter was and how many, if any, issues around the behavior change in the API came up after some period of time testing and deploying things with it. Those are all good data to have to inform decisions. (I'll be trying some testing of that nature myself) |
Sorry, something went wrong.
@gpshead yes, it may have more side effects. But it removes the characters only at the beginning and the end of a URL string (and a scheme if one is passed separately.) |
Sorry, something went wrong.
I plan to add constraints to fix CVE: "The first character of the URL-scheme string must be one ASCII alpha." Then I initiated a check on users for this constraint for two weeks, and did not receive any feedback on the impact. I think the impact of fixing the CVE problem should be small. |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
fix CVE-2023-24329