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 /
flask /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2025-04-08 16:57
json
[ DIR ]
drwxr-xr-x
2025-04-08 16:57
sansio
[ DIR ]
drwxr-xr-x
2025-04-08 16:57
__init__.py
2.56
KB
-rw-r--r--
2025-04-08 16:57
__main__.py
30
B
-rw-r--r--
2025-04-08 16:57
app.py
60.28
KB
-rw-r--r--
2025-04-08 16:57
blueprints.py
4.43
KB
-rw-r--r--
2025-04-08 16:57
cli.py
36.22
KB
-rw-r--r--
2025-04-08 16:57
config.py
12.91
KB
-rw-r--r--
2025-04-08 16:57
ctx.py
14.77
KB
-rw-r--r--
2025-04-08 16:57
debughelpers.py
5.94
KB
-rw-r--r--
2025-04-08 16:57
globals.py
1.67
KB
-rw-r--r--
2025-04-08 16:57
helpers.py
22.97
KB
-rw-r--r--
2025-04-08 16:57
logging.py
2.32
KB
-rw-r--r--
2025-04-08 16:57
py.typed
0
B
-rw-r--r--
2025-04-08 16:57
sessions.py
15.07
KB
-rw-r--r--
2025-04-08 16:57
signals.py
750
B
-rw-r--r--
2025-04-08 16:57
templating.py
7.36
KB
-rw-r--r--
2025-04-08 16:57
testing.py
9.86
KB
-rw-r--r--
2025-04-08 16:57
typing.py
3.09
KB
-rw-r--r--
2025-04-08 16:57
views.py
6.8
KB
-rw-r--r--
2025-04-08 16:57
wrappers.py
9.19
KB
-rw-r--r--
2025-04-08 16:57
Save
Rename
from __future__ import annotations import typing as t from contextvars import ContextVar from werkzeug.local import LocalProxy if t.TYPE_CHECKING: # pragma: no cover from .app import Flask from .ctx import _AppCtxGlobals from .ctx import AppContext from .ctx import RequestContext from .sessions import SessionMixin from .wrappers import Request _no_app_msg = """\ Working outside of application context. This typically means that you attempted to use functionality that needed the current application. To solve this, set up an application context with app.app_context(). See the documentation for more information.\ """ _cv_app: ContextVar[AppContext] = ContextVar("flask.app_ctx") app_ctx: AppContext = LocalProxy( # type: ignore[assignment] _cv_app, unbound_message=_no_app_msg ) current_app: Flask = LocalProxy( # type: ignore[assignment] _cv_app, "app", unbound_message=_no_app_msg ) g: _AppCtxGlobals = LocalProxy( # type: ignore[assignment] _cv_app, "g", unbound_message=_no_app_msg ) _no_req_msg = """\ Working outside of request context. This typically means that you attempted to use functionality that needed an active HTTP request. Consult the documentation on testing for information about how to avoid this problem.\ """ _cv_request: ContextVar[RequestContext] = ContextVar("flask.request_ctx") request_ctx: RequestContext = LocalProxy( # type: ignore[assignment] _cv_request, unbound_message=_no_req_msg ) request: Request = LocalProxy( # type: ignore[assignment] _cv_request, "request", unbound_message=_no_req_msg ) session: SessionMixin = LocalProxy( # type: ignore[assignment] _cv_request, "session", unbound_message=_no_req_msg )