Linux srv25.usacloudserver.us 5.14.0-570.39.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Sep 4 05:08:52 EDT 2025 x86_64
LiteSpeed
Server IP : 23.137.84.82 & Your IP : 216.73.216.127
Domains :
Cant Read [ /etc/named.conf ]
User : epicgamerzoneco
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib64 /
python3.9 /
site-packages /
borg /
platform /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2025-10-23 11:01
__init__.py
1.56
KB
-rw-r--r--
2025-10-13 20:00
base.py
10.62
KB
-rw-r--r--
2025-10-13 20:00
linux.cpython-39-x86_64-linux-gnu.so
181.66
KB
-rwxr-xr-x
2025-10-13 20:00
posix.cpython-39-x86_64-linux-gnu.so
67.11
KB
-rwxr-xr-x
2025-10-13 20:00
syncfilerange.cpython-39-x86_64-linux-gnu.so
23.55
KB
-rwxr-xr-x
2025-10-13 20:00
xattr.py
2.82
KB
-rw-r--r--
2025-10-13 20:00
Save
Rename
import errno import os from ..helpers import Buffer try: ENOATTR = errno.ENOATTR except AttributeError: # on some platforms, ENOATTR is missing, use ENODATA there ENOATTR = errno.ENODATA buffer = Buffer(bytearray, limit=2**24) def split_string0(buf): """split a list of zero-terminated strings into python not-zero-terminated bytes""" if isinstance(buf, bytearray): buf = bytes(buf) # use a bytes object, so we return a list of bytes objects return buf.split(b'\0')[:-1] def split_lstring(buf): """split a list of length-prefixed strings into python not-length-prefixed bytes""" result = [] mv = memoryview(buf) while mv: length = mv[0] result.append(bytes(mv[1:1 + length])) mv = mv[1 + length:] return result class BufferTooSmallError(Exception): """the buffer given to a xattr function was too small for the result.""" def _check(rv, path=None, detect_buffer_too_small=False): from . import get_errno if rv < 0: e = get_errno() if detect_buffer_too_small and e == errno.ERANGE: # listxattr and getxattr signal with ERANGE that they need a bigger result buffer. # setxattr signals this way that e.g. a xattr key name is too long / inacceptable. raise BufferTooSmallError else: try: msg = os.strerror(e) except ValueError: msg = '' if isinstance(path, int): path = '<FD %d>' % path raise OSError(e, msg, path) if detect_buffer_too_small and rv >= len(buffer): # freebsd does not error with ERANGE if the buffer is too small, # it just fills the buffer, truncates and returns. # so, we play safe and just assume that result is truncated if # it happens to be a full buffer. raise BufferTooSmallError return rv def _listxattr_inner(func, path): assert isinstance(path, (bytes, int)) size = len(buffer) while True: buf = buffer.get(size) try: n = _check(func(path, buf, size), path, detect_buffer_too_small=True) except BufferTooSmallError: size *= 2 else: return n, buf def _getxattr_inner(func, path, name): assert isinstance(path, (bytes, int)) assert isinstance(name, bytes) size = len(buffer) while True: buf = buffer.get(size) try: n = _check(func(path, name, buf, size), path, detect_buffer_too_small=True) except BufferTooSmallError: size *= 2 else: return n, buf def _setxattr_inner(func, path, name, value): assert isinstance(path, (bytes, int)) assert isinstance(name, bytes) assert isinstance(value, bytes) _check(func(path, name, value, len(value)), path, detect_buffer_too_small=False)