Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
lib /
python3.11 /
dist-packages /
waitress /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2025-04-08 16:49
__init__.py
1.34
KB
-rw-r--r--
2025-04-08 16:49
__main__.py
75
B
-rw-r--r--
2025-04-08 16:49
adjustments.py
17.49
KB
-rw-r--r--
2025-04-08 16:49
buffers.py
9.11
KB
-rw-r--r--
2025-04-08 16:49
channel.py
18.98
KB
-rw-r--r--
2025-04-08 16:49
compat.py
867
B
-rw-r--r--
2025-04-08 16:49
parser.py
15.21
KB
-rw-r--r--
2025-04-08 16:49
proxy_headers.py
12.05
KB
-rw-r--r--
2025-04-08 16:49
receiver.py
5.76
KB
-rw-r--r--
2025-04-08 16:49
rfc7230.py
2.47
KB
-rw-r--r--
2025-04-08 16:49
runner.py
7.44
KB
-rw-r--r--
2025-04-08 16:49
server.py
13.43
KB
-rw-r--r--
2025-04-08 16:49
task.py
21.33
KB
-rw-r--r--
2025-04-08 16:49
trigger.py
7.63
KB
-rw-r--r--
2025-04-08 16:49
utilities.py
6.21
KB
-rw-r--r--
2025-04-08 16:49
wasyncore.py
18.47
KB
-rw-r--r--
2025-04-08 16:49
Save
Rename
import platform # Fix for issue reported in https://github.com/Pylons/waitress/issues/138, # Python on Windows may not define IPPROTO_IPV6 in socket. import socket import sys import warnings # True if we are running on Windows WIN = platform.system() == "Windows" MAXINT = sys.maxsize HAS_IPV6 = socket.has_ipv6 if hasattr(socket, "IPPROTO_IPV6") and hasattr(socket, "IPV6_V6ONLY"): IPPROTO_IPV6 = socket.IPPROTO_IPV6 IPV6_V6ONLY = socket.IPV6_V6ONLY else: # pragma: no cover if WIN: IPPROTO_IPV6 = 41 IPV6_V6ONLY = 27 else: warnings.warn( "OS does not support required IPv6 socket flags. This is requirement " "for Waitress. Please open an issue at https://github.com/Pylons/waitress. " "IPv6 support has been disabled.", RuntimeWarning, ) HAS_IPV6 = False