SILENT KILLERPanel

Current Path: > > opt > > hc_python > lib > python3.12 > > site-packages > pip > _vendor > urllib3 > util


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: //opt//hc_python/lib/python3.12//site-packages/pip/_vendor/urllib3/util

NameTypeSizeLast ModifiedActions
__pycache__ Directory - -
__init__.py File 1155 bytes May 23 2025 10:34:25.
connection.py File 4901 bytes May 23 2025 10:34:25.
proxy.py File 1605 bytes May 23 2025 10:34:25.
queue.py File 498 bytes May 23 2025 10:34:25.
request.py File 3997 bytes May 23 2025 10:34:25.
response.py File 3510 bytes May 23 2025 10:34:25.
retry.py File 22050 bytes May 23 2025 10:34:25.
ssl_.py File 17460 bytes May 23 2025 10:34:25.
ssl_match_hostname.py File 5758 bytes May 23 2025 10:34:25.
ssltransport.py File 6895 bytes May 23 2025 10:34:25.
timeout.py File 10168 bytes May 23 2025 10:34:25.
url.py File 14296 bytes May 23 2025 10:34:25.
wait.py File 5403 bytes May 23 2025 10:34:25.

Reading File: //opt//hc_python/lib/python3.12//site-packages/pip/_vendor/urllib3/util/proxy.py

from .ssl_ import create_urllib3_context, resolve_cert_reqs, resolve_ssl_version


def connection_requires_http_tunnel(
    proxy_url=None, proxy_config=None, destination_scheme=None
):
    """
    Returns True if the connection requires an HTTP CONNECT through the proxy.

    :param URL proxy_url:
        URL of the proxy.
    :param ProxyConfig proxy_config:
        Proxy configuration from poolmanager.py
    :param str destination_scheme:
        The scheme of the destination. (i.e https, http, etc)
    """
    # If we're not using a proxy, no way to use a tunnel.
    if proxy_url is None:
        return False

    # HTTP destinations never require tunneling, we always forward.
    if destination_scheme == "http":
        return False

    # Support for forwarding with HTTPS proxies and HTTPS destinations.
    if (
        proxy_url.scheme == "https"
        and proxy_config
        and proxy_config.use_forwarding_for_https
    ):
        return False

    # Otherwise always use a tunnel.
    return True


def create_proxy_ssl_context(
    ssl_version, cert_reqs, ca_certs=None, ca_cert_dir=None, ca_cert_data=None
):
    """
    Generates a default proxy ssl context if one hasn't been provided by the
    user.
    """
    ssl_context = create_urllib3_context(
        ssl_version=resolve_ssl_version(ssl_version),
        cert_reqs=resolve_cert_reqs(cert_reqs),
    )

    if (
        not ca_certs
        and not ca_cert_dir
        and not ca_cert_data
        and hasattr(ssl_context, "load_default_certs")
    ):
        ssl_context.load_default_certs()

    return ssl_context

SILENT KILLER Tool