Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.216.68
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python3 /
dist-packages /
wheel /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2025-02-27 13:31
cli
[ DIR ]
drwxr-xr-x
2025-02-27 13:31
vendored
[ DIR ]
drwxr-xr-x
2025-02-27 13:31
__init__.py
23
B
-rw-r--r--
2021-12-22 21:21
__main__.py
417
B
-rw-r--r--
2021-12-22 21:21
bdist_wheel.py
18.63
KB
-rw-r--r--
2021-12-22 21:21
macosx_libfile.py
15.56
KB
-rw-r--r--
2021-12-22 21:21
metadata.py
4.24
KB
-rw-r--r--
2021-12-22 21:21
pkginfo.py
1.23
KB
-rw-r--r--
2021-12-22 21:21
util.py
938
B
-rw-r--r--
2021-12-22 21:21
wheelfile.py
7.41
KB
-rw-r--r--
2023-01-23 19:29
Save
Rename
import base64 import io import sys if sys.version_info[0] < 3: text_type = unicode # noqa: F821 StringIO = io.BytesIO def native(s, encoding='utf-8'): if isinstance(s, unicode): # noqa: F821 return s.encode(encoding) return s else: text_type = str StringIO = io.StringIO def native(s, encoding='utf-8'): if isinstance(s, bytes): return s.decode(encoding) return s def urlsafe_b64encode(data): """urlsafe_b64encode without padding""" return base64.urlsafe_b64encode(data).rstrip(b'=') def urlsafe_b64decode(data): """urlsafe_b64decode without padding""" pad = b'=' * (4 - (len(data) & 3)) return base64.urlsafe_b64decode(data + pad) def as_unicode(s): if isinstance(s, bytes): return s.decode('utf-8') return s def as_bytes(s): if isinstance(s, text_type): return s.encode('utf-8') return s