Linux jobworks 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:53:05 UTC 2026 x86_64
Apache/2.4.58 (Ubuntu)
Server IP : 10.0.1.5 & Your IP : 216.73.217.52
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python3 /
dist-packages /
urllib3 /
util /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2026-06-04 06:52
__init__.py
1.03
KB
-rw-r--r--
2026-05-22 17:32
connection.py
4.36
KB
-rw-r--r--
2026-05-22 17:32
proxy.py
1.12
KB
-rw-r--r--
2026-05-22 17:32
request.py
7.89
KB
-rw-r--r--
2026-05-22 17:32
response.py
3.29
KB
-rw-r--r--
2026-05-22 17:32
retry.py
17.99
KB
-rw-r--r--
2026-05-22 17:32
ssl_.py
18.95
KB
-rw-r--r--
2026-05-22 17:32
ssl_match_hostname.py
5.68
KB
-rw-r--r--
2026-05-22 17:32
ssltransport.py
8.83
KB
-rw-r--r--
2026-05-22 17:32
timeout.py
10.28
KB
-rw-r--r--
2026-05-22 17:32
url.py
14.86
KB
-rw-r--r--
2026-05-22 17:32
util.py
1.12
KB
-rw-r--r--
2026-05-22 17:32
wait.py
4.32
KB
-rw-r--r--
2026-05-22 17:32
Save
Rename
from __future__ import annotations import typing from .url import Url if typing.TYPE_CHECKING: from ..connection import ProxyConfig def connection_requires_http_tunnel( proxy_url: Url | None = None, proxy_config: ProxyConfig | None = None, destination_scheme: str | None = None, ) -> bool: """ 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