Linux sh52.ich-4.com 5.14.0-611.26.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Jan 29 05:24:47 EST 2026 x86_64
LiteSpeed
Server IP : 198.143.147.58 & Your IP : 216.73.217.21
Domains :
Cant Read [ /etc/named.conf ]
User : actualbuzz
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
python3.9 /
site-packages /
cockpit /
channels /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2026-04-16 01:40
__init__.py
1.43
KB
-rw-r--r--
2026-04-11 14:14
dbus.py
21.69
KB
-rw-r--r--
2026-04-11 14:14
filesystem.py
24.97
KB
-rw-r--r--
2026-04-11 14:14
http_channel.py
6.08
KB
-rw-r--r--
2026-04-11 14:14
info.py
1001
B
-rw-r--r--
2026-04-11 14:14
metrics.py
6.67
KB
-rw-r--r--
2026-04-11 14:14
packages.py
3.96
KB
-rw-r--r--
2026-04-11 14:14
pcp.py
27.01
KB
-rw-r--r--
2026-04-11 14:14
stream.py
4.91
KB
-rw-r--r--
2026-04-11 14:14
trivial.py
1.25
KB
-rw-r--r--
2026-04-11 14:14
Save
Rename
# This file is part of Cockpit. # # Copyright (C) 2022 Red Hat, Inc. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. 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()