Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade Requests to 2.31.0 #183

Closed
ArgusLi opened this issue May 31, 2023 · 0 comments · Fixed by #186
Closed

Upgrade Requests to 2.31.0 #183

ArgusLi opened this issue May 31, 2023 · 0 comments · Fixed by #186
Assignees
Labels
dependencies Pull requests that update a dependency file

Comments

@ArgusLi
Copy link
Contributor

ArgusLi commented May 31, 2023

Describe the enhancement requested

Add install requires >=2.31.0 for Requests in setup.py to combat security vulnerability.

Justification for this enhancement

Impact

Since Requests v2.3.0, Requests has been vulnerable to potentially leaking Proxy-Authorization headers to destination servers, specifically during redirects to an HTTPS origin. This is a product of how rebuild_proxies is used to recompute and reattach the Proxy-Authorization header to requests when redirected. Note this behavior has only been observed to affect proxied requests when credentials are supplied in the URL user information component (e.g. https://username:password@proxy:8080).

Current vulnerable behavior(s):

HTTP → HTTPS: leak
HTTPS → HTTP: no leak
HTTPS → HTTPS: leak
HTTP → HTTP: no leak
For HTTP connections sent through the proxy, the proxy will identify the header in the request itself and remove it prior to forwarding to the destination server. However when sent over HTTPS, the Proxy-Authorization header must be sent in the CONNECT request as the proxy has no visibility into further tunneled requests. This results in Requests forwarding the header to the destination server unintentionally, allowing a malicious actor to potentially exfiltrate those credentials.

The reason this currently works for HTTPS connections in Requests is the Proxy-Authorization header is also handled by urllib3 with our usage of the ProxyManager in adapters.py with proxy_manager_for. This will compute the required proxy headers in proxy_headers and pass them to the Proxy Manager, avoiding attaching them directly to the Request object. This will be our preferred option going forward for default usage.

Patches

Starting in Requests v2.31.0, Requests will no longer attach this header to redirects with an HTTPS destination. This should have no negative impacts on the default behavior of the library as the proxy credentials are already properly being handled by urllib3's ProxyManager.

For users with custom adapters, this may be potentially breaking if you were already working around this behavior. The previous functionality of rebuild_proxies doesn't make sense in any case, so we would encourage any users impacted to migrate any handling of Proxy-Authorization directly into their custom adapter.

Source

https://requests.readthedocs.io/en/latest/community/updates/#id1

@ArgusLi ArgusLi added the dependencies Pull requests that update a dependency file label May 31, 2023
@ArgusLi ArgusLi self-assigned this May 31, 2023
ArgusLi added a commit that referenced this issue Jun 21, 2023
### Summary

Upgrade dbt-dremio to support dbt-core 1.5.0.

### Description
- Add support Python 3.11
- Add support for relevant tests
    - caching
    - hooks
    - simple_copy
- Add support model contracts
- Upgrades request to 2.31.0 (Closes #183)

### Test Results

- [x] `./.github/scripts/smoke_test.sh` - all pass
- [x] `./tests/*.*` - all pass


### Changelog

-   [x] Added a summary of what this PR accomplishes to CHANGELOG.md

### Related Issue

#179
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Development

Successfully merging a pull request may close this issue.

1 participant