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 logging from waitress.server import create_server def serve(app, **kw): _server = kw.pop("_server", create_server) # test shim _quiet = kw.pop("_quiet", False) # test shim _profile = kw.pop("_profile", False) # test shim if not _quiet: # pragma: no cover # idempotent if logging has already been set up logging.basicConfig() server = _server(app, **kw) if not _quiet: # pragma: no cover server.print_listen("Serving on http://{}:{}") if _profile: # pragma: no cover profile("server.run()", globals(), locals(), (), False) else: server.run() def serve_paste(app, global_conf, **kw): serve(app, **kw) return 0 def profile(cmd, globals, locals, sort_order, callers): # pragma: no cover # runs a command under the profiler and print profiling output at shutdown import os import profile import pstats import tempfile fd, fn = tempfile.mkstemp() try: profile.runctx(cmd, globals, locals, fn) stats = pstats.Stats(fn) stats.strip_dirs() # calls,time,cumulative and cumulative,calls,time are useful stats.sort_stats(*(sort_order or ("cumulative", "calls", "time"))) if callers: stats.print_callers(0.3) else: stats.print_stats(0.3) finally: os.remove(fn)