Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
usr /
lib /
python3 /
dist-packages /
uaclient /
clouds /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
aws.py
5.67
KB
-rw-r--r--
azure.py
2.85
KB
-rw-r--r--
gcp.py
4.29
KB
-rw-r--r--
identity.py
3.13
KB
-rw-r--r--
__init__.py
1.76
KB
-rw-r--r--
lxd.py
2.54
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : __init__.py
import abc from typing import Any, Dict from uaclient import config, contract class AutoAttachInstance(metaclass=abc.ABCMeta): @property @abc.abstractmethod def is_viable(self) -> bool: """Return True if the machine is a viable AutoAttachCloudInstance.""" pass @abc.abstractmethod def acquire_pro_token(self, cfg: config.UAConfig) -> str: """ Cloud-specific implementation of acquiring the pro token using whatever method suits the platform """ pass @abc.abstractmethod def should_poll_for_pro_license(self) -> bool: """ Cloud-specific checks for whether the daemon should continously poll for Ubuntu Pro licenses. """ pass @abc.abstractmethod def is_pro_license_present(self, *, wait_for_change: bool) -> bool: """ Check for an Ubuntu Pro license """ pass class PublicCloudAutoAttachInstance(AutoAttachInstance, metaclass=abc.ABCMeta): @property @abc.abstractmethod def identity_doc(self) -> Dict[str, Any]: """Return the identity document representing this cloud instance""" pass @property @abc.abstractmethod def cloud_type(self) -> str: """Return a string of the cloud type on which this instance runs""" pass def acquire_pro_token(self, cfg: config.UAConfig) -> str: """ Cloud-specific implementation of acquiring the pro token using whatever method suits the platform """ contract_client = contract.UAContractClient(cfg) token_response = contract_client.get_contract_token_for_cloud_instance( cloud_type=self.cloud_type, data=self.identity_doc ) return token_response["contractToken"]
Close