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 /
api /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
u
[ DIR ]
drwxr-xr-x
__init__.py
0
B
-rw-r--r--
api.py
4.29
KB
-rw-r--r--
data_types.py
1.91
KB
-rw-r--r--
errors.py
1.77
KB
-rw-r--r--
exceptions.py
1.42
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : exceptions.py
from typing import List, Tuple from uaclient import messages from uaclient.api.errors import APIError from uaclient.exceptions import ( AlreadyAttachedError, ConnectivityError, ContractAPIError, EntitlementNotFoundError, InvalidProImage, LockHeldError, NonAutoAttachImageError, UrlError, UserFacingError, ) __all__ = [ "AlreadyAttachedError", "ConnectivityError", "ContractAPIError", "EntitlementNotFoundError", "InvalidProImage", "LockHeldError", "NonAutoAttachImageError", "UrlError", "UserFacingError", ] class EntitlementsNotEnabledError(UserFacingError): def __init__( self, failed_services: List[Tuple[str, messages.NamedMessage]] ): info_dicts = [ {"name": f[0], "code": f[1].name, "title": f[1].msg} for f in failed_services ] super().__init__( messages.ENTITLEMENTS_NOT_ENABLED_ERROR.msg, messages.ENTITLEMENTS_NOT_ENABLED_ERROR.name, additional_info={"services": info_dicts}, ) class AutoAttachDisabledError(UserFacingError): def __init__(self): super().__init__( messages.AUTO_ATTACH_DISABLED_ERROR.msg, messages.AUTO_ATTACH_DISABLED_ERROR.name, ) class UnattendedUpgradesError(APIError): def __init__(self, msg): self.msg = msg self.msg_code = "unable-to-determine-unattended-upgrade-status"
Close