Linux quad-clini-stageVM 5.4.0-1109-azure #115~18.04.1-Ubuntu SMP Mon May 22 20:06:37 UTC 2023 x86_64
Apache/2.4.29 (Ubuntu)
: 10.2.0.4 | : 3.144.30.14
Cant Read [ /etc/named.conf ]
7.4.25
www-data
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 /
ubuntu-advantage /
[ HOME SHELL ]
Name
Size
Permission
Action
apt-esm-hook
38.16
KB
-rwxr-xr-x
apt-esm-json-hook
2.24
MB
-rwxr-xr-x
patch_status_json.py
2.35
KB
-rwxr-xr-x
reboot_cmds.py
5.42
KB
-rw-r--r--
ua_update_messaging.py
13.76
KB
-rw-r--r--
upgrade_lts_contract.py
2.88
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : patch_status_json.py
#!/usr/bin/env python3 """ Patch status.json file to avoid tracebacks for non-root from `ua status` Between 27.1 and 27.2 status.json broke schema key backward-compatibility. Running `ua status` as non-root users does not generate a new status.json with the updated status.json schema so the logic which renders ua status information will traceback on KeyErrors. Since we haven't introduced official schema versioning in UA client yet, this patch is a stop-gap until official schema version handling is delivered. """ import copy import json import logging from uaclient.cli import setup_logging from uaclient import util def patch_status_json_schema_0_1(status_file: str): """Patch incompatible status.json file schema to align with version 0.1.""" setup_logging(logging.INFO, logging.DEBUG) content = util.load_file(status_file) try: status = json.loads(content, cls=util.DatetimeAwareJSONDecoder) except ValueError as e: logging.debug( "Unable to patch /var/lib/ubuntu-advantage/status.json: %s", str(e) ) return new_status = copy.deepcopy(status) if float(status.get("_schema_version", 0)) >= 0.1: return # Already have version 0.1 from daily PPA logging.debug("Patching /var/lib/ubuntu-advantage/status.json schema") new_status["_schema_version"] = "0.1" new_status["account"] = { "name": new_status.pop("account", ""), "id": new_status.pop("account-id", ""), } new_status["contract"] = { "tech_support_level": new_status.pop("techSupportLevel", "n/a"), "name": new_status.pop("subscription", ""), "id": new_status.pop("subscription-id", ""), } if "configStatus" in new_status: new_status["execution_status"] = new_status.pop("configStatus") if "configStatusDetails" in new_status: new_status["execution_details"] = new_status.pop("configStatusDetails") try: status_content = json.dumps( new_status, cls=util.DatetimeAwareJSONEncoder ) except ValueError as e: logging.debug( "Unable to patch /var/lib/ubuntu-advantage/status.json: {}".format( str(e) ) ) util.write_file(status_file, status_content) if __name__ == "__main__": patch_status_json_schema_0_1( status_file="/var/lib/ubuntu-advantage/status.json" )
Close