Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python3.6 /
site-packages /
salt /
utils /
pkg /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2022-10-11 05:09
__init__.py
2.37
KB
-rw-r--r--
2022-05-16 09:16
deb.py
839
B
-rw-r--r--
2022-05-16 09:16
rpm.py
5.08
KB
-rw-r--r--
2022-05-16 09:16
win.py
55.28
KB
-rw-r--r--
2022-05-16 09:16
Save
Rename
""" Common functions for working with deb packages """ def combine_comments(comments): """ Given a list of comments, or a comment submitted as a string, return a single line of text containing all of the comments. """ if isinstance(comments, list): comments = [c if isinstance(c, str) else str(c) for c in comments] else: if not isinstance(comments, str): comments = [str(comments)] else: comments = [comments] return " ".join(comments).strip() def strip_uri(repo): """ Remove the trailing slash from the URI in a repo definition """ splits = repo.split() for idx, val in enumerate(splits): if any(val.startswith(x) for x in ("http://", "https://", "ftp://")): splits[idx] = val.rstrip("/") return " ".join(splits)