Current Path: > > opt > cloudlinux > venv > lib64 > python3.11 > site-packages > > clcagefslib
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__pycache__ | Directory | - | - | |
selector | Directory | - | - | |
__init__.py | File | 180 bytes | June 23 2025 12:23:22. | |
const.py | File | 936 bytes | June 23 2025 12:23:22. | |
fs.py | File | 708 bytes | June 23 2025 12:23:22. | |
io.py | File | 2198 bytes | June 23 2025 12:23:22. |
# Copyright © Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2024 All Rights Reserved # # Licensed under CLOUD LINUX LICENSE AGREEMENT # http://cloudlinux.com/docs/LICENSE.TXT import functools import grp import sys import secureio from clcommon import ClPwd def get_user_prefix(username) -> str: base = 100 try: uid = secureio.clpwd.get_uid(username) except ClPwd.NoSuchUserException: secureio.print_error('user %s not found' % username) sys.exit(1) b = uid % base prefix = "%02d" % b return prefix @functools.cache def get_linksafe_gid() -> int | None: try: return grp.getgrnam('linksafe').gr_gid except KeyError: return None
SILENT KILLER Tool