Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.216.68
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-05 06:15
__init__.py
1.13
KB
-rw-r--r--
2021-05-27 02:01
connection.py
4.78
KB
-rw-r--r--
2026-05-23 05:41
proxy.py
1.57
KB
-rw-r--r--
2021-05-27 02:01
queue.py
471
B
-rw-r--r--
2026-05-23 05:41
request.py
4.02
KB
-rw-r--r--
2026-05-23 05:41
response.py
3.42
KB
-rw-r--r--
2026-05-23 05:41
retry.py
20.92
KB
-rw-r--r--
2026-05-23 05:41
ssl_.py
16.69
KB
-rw-r--r--
2026-05-23 05:41
ssltransport.py
6.75
KB
-rw-r--r--
2021-05-27 02:01
timeout.py
9.77
KB
-rw-r--r--
2021-05-27 02:01
url.py
13.69
KB
-rw-r--r--
2026-05-23 05:41
wait.py
5.28
KB
-rw-r--r--
2021-05-27 02:01
Save
Rename
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