Linux salto.nuvemidc.com 5.14.0-687.42.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Aug 27 11:55:12 EDT 2026 x86_64
LiteSpeed
: 177.73.233.61 | : 216.73.217.116
Cant Read [ /etc/named.conf ]
7.4.33
agenci18
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
lib /
python3.9 /
site-packages /
cockpit /
channels /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
__init__.py
858
B
-rw-r--r--
dbus.py
21.08
KB
-rw-r--r--
filesystem.py
24.36
KB
-rw-r--r--
http_channel.py
5.47
KB
-rw-r--r--
info.py
377
B
-rw-r--r--
metrics.py
6.06
KB
-rw-r--r--
packages.py
3.35
KB
-rw-r--r--
pcp.py
27.32
KB
-rw-r--r--
stream.py
4.29
KB
-rw-r--r--
trivial.py
660
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : trivial.py
# # Copyright (C) 2022 Red Hat, Inc. # SPDX-License-Identifier: GPL-3.0-or-later import logging from cockpit.jsonutil import JsonObject from ..channel import Channel logger = logging.getLogger(__name__) class EchoChannel(Channel): payload = 'echo' def do_open(self, options: JsonObject) -> None: self.ready() def do_data(self, data: bytes) -> None: self.send_bytes(data) def do_done(self) -> None: self.done() self.close() class NullChannel(Channel): payload = 'null' def do_open(self, options: JsonObject) -> None: self.ready() def do_close(self) -> None: self.close()
Close