Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
lib /
python3 /
dist-packages /
uaclient /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
api
[ DIR ]
drwxr-xr-x
clouds
[ DIR ]
drwxr-xr-x
daemon
[ DIR ]
drwxr-xr-x
entitlements
[ DIR ]
drwxr-xr-x
files
[ DIR ]
drwxr-xr-x
jobs
[ DIR ]
drwxr-xr-x
__init__.py
0
B
-rw-r--r--
actions.py
8.19
KB
-rw-r--r--
apt.py
25.74
KB
-rw-r--r--
apt_news.py
6.33
KB
-rw-r--r--
cli.py
64.22
KB
-rw-r--r--
config.py
24.5
KB
-rw-r--r--
contract.py
27.47
KB
-rw-r--r--
contract_data_types.py
9.38
KB
-rw-r--r--
data_types.py
10.3
KB
-rw-r--r--
defaults.py
2.46
KB
-rw-r--r--
event_logger.py
7.75
KB
-rw-r--r--
exceptions.py
13.56
KB
-rw-r--r--
gpg.py
813
B
-rw-r--r--
livepatch.py
11.03
KB
-rw-r--r--
lock.py
3.58
KB
-rw-r--r--
log.py
1.89
KB
-rw-r--r--
messages.py
38.47
KB
-rw-r--r--
pip.py
756
B
-rw-r--r--
security.py
48.75
KB
-rw-r--r--
security_status.py
24.19
KB
-rw-r--r--
serviceclient.py
6.22
KB
-rw-r--r--
snap.py
4.06
KB
-rw-r--r--
status.py
25.73
KB
-rw-r--r--
system.py
17.09
KB
-rw-r--r--
types.py
308
B
-rw-r--r--
util.py
20.3
KB
-rw-r--r--
version.py
2.81
KB
-rw-r--r--
yaml.py
642
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : defaults.py
""" Project-wide default settings These are in their own file so they can be imported by setup.py before we have any of our dependencies installed. """ UAC_ETC_PATH = "/etc/ubuntu-advantage/" UAC_RUN_PATH = "/run/ubuntu-advantage/" UAC_TMP_PATH = "/tmp/ubuntu-advantage/" DEFAULT_DATA_DIR = "/var/lib/ubuntu-advantage" MACHINE_TOKEN_FILE = "machine-token.json" PRIVATE_SUBDIR = "/private" DEFAULT_PRIVATE_MACHINE_TOKEN_PATH = ( DEFAULT_DATA_DIR + PRIVATE_SUBDIR + "/" + MACHINE_TOKEN_FILE ) MESSAGES_SUBDIR = "/messages" MESSAGES_DIR = DEFAULT_DATA_DIR + MESSAGES_SUBDIR CANDIDATE_CACHE_PATH = UAC_RUN_PATH + "candidate-version" DEFAULT_CONFIG_FILE = UAC_ETC_PATH + "uaclient.conf" DEFAULT_HELP_FILE = UAC_ETC_PATH + "help_data.yaml" DEFAULT_USER_CONFIG_JSON_FILE = DEFAULT_DATA_DIR + "/user-config.json" DEFAULT_UPGRADE_CONTRACT_FLAG_FILE = UAC_ETC_PATH + "request-update-contract" BASE_CONTRACT_URL = "https://contracts.canonical.com" BASE_SECURITY_URL = "https://ubuntu.com/security" BASE_LIVEPATCH_URL = "https://livepatch.canonical.com" BASE_UA_URL = "https://ubuntu.com/pro" EOL_UA_URL_TMPL = "https://ubuntu.com/{hyphenatedrelease}" BASE_ESM_URL = "https://ubuntu.com/esm" APT_NEWS_URL = "https://motd.ubuntu.com/aptnews.json" CLOUD_BUILD_INFO = "/etc/cloud/build.info" ESM_APT_ROOTDIR = DEFAULT_DATA_DIR + "/apt-esm/" PRO_ATTACH_URL = BASE_UA_URL + "/attach" DOCUMENTATION_URL = ( "https://discourse.ubuntu.com/t/ubuntu-advantage-client/21788" ) PRINT_WRAP_WIDTH = 80 CONTRACT_EXPIRY_GRACE_PERIOD_DAYS = 14 CONTRACT_EXPIRY_PENDING_DAYS = 20 ATTACH_FAIL_DATE_FORMAT = "%B %d, %Y" DEFAULT_LOG_DIR = "/var/log" DEFAULT_LOG_FILE_BASE_NAME = "ubuntu-advantage" DEFAULT_LOG_PREFIX = DEFAULT_LOG_DIR + "/" + DEFAULT_LOG_FILE_BASE_NAME DEFAULT_LOG_FORMAT = ( "%(asctime)s - %(filename)s:(%(lineno)d) [%(levelname)s]: %(message)s" ) CONFIG_DEFAULTS = { "contract_url": BASE_CONTRACT_URL, "security_url": BASE_SECURITY_URL, "data_dir": DEFAULT_DATA_DIR, "log_level": "debug", "log_file": "/var/log/ubuntu-advantage.log", "timer_log_file": "/var/log/ubuntu-advantage-timer.log", "daemon_log_file": "/var/log/ubuntu-advantage-daemon.log", } CONFIG_FIELD_ENVVAR_ALLOWLIST = [ "ua_data_dir", "ua_log_file", "ua_timer_log_file", "ua_daemon_log_file", "ua_log_level", "ua_security_url", ] ROOT_READABLE_MODE = 0o600 WORLD_READABLE_MODE = 0o644 NOTICES_PERMANENT_DIRECTORY = DEFAULT_DATA_DIR + "/notices/" NOTICES_TEMPORARY_DIRECTORY = UAC_RUN_PATH + "notices/"
Close