Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.1.1 & Your IP : 3.143.213.242
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 /
landscape /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2024-09-18 19:49
lib
[ DIR ]
drwxr-xr-x
2024-09-18 19:49
message_schemas
[ DIR ]
drwxr-xr-x
2024-09-18 19:49
sysinfo
[ DIR ]
drwxr-xr-x
2024-09-18 19:49
__init__.py
2.03
KB
-rw-r--r--
2024-05-28 19:19
constants.py
1.34
KB
-rw-r--r--
2023-02-07 18:55
Save
Rename
""" Hold constants used across landscape, to reduce import size when one only needs to look at those values. """ APT_PREFERENCES_SIZE_LIMIT = 1048576 # 1 MByte # The name "UBUNTU" is used in the variable name due to the fact that the path # is Ubuntu-specific, taken from /etc/login.defs. UBUNTU_PATH = ":".join( ["/usr/local/sbin", "/usr/local/bin", "/usr/sbin", "/usr/bin", "/sbin", "/bin", "/snap/bin"]) SUCCESS_RESULT = 1 ERROR_RESULT = 100 DEPENDENCY_ERROR_RESULT = 101 CLIENT_VERSION_ERROR_RESULT = 102 POLICY_STRICT = 0 POLICY_ALLOW_INSTALLS = 1 POLICY_ALLOW_ALL_CHANGES = 2 # The amount of time to wait while we have unknown package data before # reporting an error to the server in response to an operation. # The two common cases of this are: # 1. The server requested an operation that we've decided requires some # dependencies, but we don't know the package ID of those dependencies. It # should only take a bit more than 10 minutes for that to be resolved by the # package reporter. # 2. We lost some package data, for example by a deb archive becoming # inaccessible for a while. The earliest we can reasonably assume that to be # resolved is in 60 minutes, when the package reporter runs again. # So we'll give the problem one chance to resolve itself, by only waiting for # one run of apt-update. UNKNOWN_PACKAGE_DATA_TIMEOUT = 70 * 60