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 /
werkzeug /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2025-04-08 16:57
datastructures
[ DIR ]
drwxr-xr-x
2025-04-08 16:57
debug
[ DIR ]
drwxr-xr-x
2025-04-08 16:57
middleware
[ DIR ]
drwxr-xr-x
2025-04-08 16:57
routing
[ DIR ]
drwxr-xr-x
2025-04-08 16:57
sansio
[ DIR ]
drwxr-xr-x
2025-04-08 16:57
wrappers
[ DIR ]
drwxr-xr-x
2025-04-08 16:57
__init__.py
165
B
-rw-r--r--
2025-04-08 16:57
_internal.py
5.42
KB
-rw-r--r--
2025-04-08 16:57
_reloader.py
15.07
KB
-rw-r--r--
2025-04-08 16:57
exceptions.py
25.83
KB
-rw-r--r--
2025-04-08 16:57
formparser.py
15.48
KB
-rw-r--r--
2025-04-08 16:57
http.py
43.83
KB
-rw-r--r--
2025-04-08 16:57
local.py
21.96
KB
-rw-r--r--
2025-04-08 16:57
py.typed
0
B
-rw-r--r--
2025-04-08 16:57
security.py
5.45
KB
-rw-r--r--
2025-04-08 16:57
serving.py
38.92
KB
-rw-r--r--
2025-04-08 16:57
test.py
51.56
KB
-rw-r--r--
2025-04-08 16:57
testapp.py
6.18
KB
-rw-r--r--
2025-04-08 16:57
urls.py
6.28
KB
-rw-r--r--
2025-04-08 16:57
user_agent.py
1.38
KB
-rw-r--r--
2025-04-08 16:57
utils.py
24.15
KB
-rw-r--r--
2025-04-08 16:57
wsgi.py
20.4
KB
-rw-r--r--
2025-04-08 16:57
Save
Rename
from __future__ import annotations class UserAgent: """Represents a parsed user agent header value. The default implementation does no parsing, only the :attr:`string` attribute is set. A subclass may parse the string to set the common attributes or expose other information. Set :attr:`werkzeug.wrappers.Request.user_agent_class` to use a subclass. :param string: The header value to parse. .. versionadded:: 2.0 This replaces the previous ``useragents`` module, but does not provide a built-in parser. """ platform: str | None = None """The OS name, if it could be parsed from the string.""" browser: str | None = None """The browser name, if it could be parsed from the string.""" version: str | None = None """The browser version, if it could be parsed from the string.""" language: str | None = None """The browser language, if it could be parsed from the string.""" def __init__(self, string: str) -> None: self.string: str = string """The original header value.""" def __repr__(self) -> str: return f"<{type(self).__name__} {self.browser}/{self.version}>" def __str__(self) -> str: return self.string def __bool__(self) -> bool: return bool(self.browser) def to_header(self) -> str: """Convert to a header value.""" return self.string