Linux evo.fastest-server.com 5.14.0-284.1101.el9.tuxcare.11.els11.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 14 13:30:35 UTC 2026 x86_64
LiteSpeed
Server IP : 103.249.112.113 & Your IP : 216.73.217.135
Domains : 988 Domain
User : tanishks
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
l.v.e-manager /
utils /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2026-09-04 11:50
downgrades
[ DIR ]
drwxr-xr-x
2026-09-04 11:42
activate
2.3
KB
-rwxr-xr-x
2026-08-11 11:38
autorestore.py
11.18
KB
-rwxr-xr-x
2026-08-11 11:38
cache_phpdata.py
7.27
KB
-rwxr-xr-x
2026-08-11 11:38
cache_rubygems.py
1.42
KB
-rwxr-xr-x
2026-08-11 11:38
clinfo.php
216
B
-rw-r--r--
2026-08-11 11:38
cloudlinux-awp-installer.py
5.29
KB
-rwxr-xr-x
2026-08-11 11:38
cloudlinux-cli-user.py
491
B
-rwxr-xr-x
2026-08-11 11:38
cloudlinux-cli.py
490
B
-rwxr-xr-x
2026-08-11 11:38
cloudlinux-selector.py
654
B
-rwxr-xr-x
2026-08-11 11:38
cloudlinux-xray.py
807
B
-rwxr-xr-x
2026-08-11 11:38
cloudlinux_cli.py
48.11
KB
-rw-r--r--
2026-08-11 11:38
cloudlinux_cli_user.py
19.98
KB
-rw-r--r--
2026-08-11 11:38
cpanel_api.py
11.39
KB
-rw-r--r--
2026-08-11 11:38
create_translate_template.py
505
B
-rwxr-xr-x
2026-08-11 11:38
delete-isp-plugin.sh
318
B
-rwxr-xr-x
2026-08-11 11:38
dynamicui.py
4.53
KB
-rwxr-xr-x
2026-08-11 11:38
dynamicui_base.py
565
B
-rw-r--r--
2026-08-11 11:38
dynamicui_cpanel.py
3.05
KB
-rw-r--r--
2026-08-11 11:38
dynamicui_da.py
2.44
KB
-rw-r--r--
2026-08-11 11:38
dynamicui_plesk.py
1.25
KB
-rw-r--r--
2026-08-11 11:38
fix-nodejs-environments.py
3.59
KB
-rwxr-xr-x
2026-08-11 11:38
generate_locale_files_for_plesk.py
2.97
KB
-rwxr-xr-x
2026-08-11 11:38
install-cpanel-plugin.sh
1.38
KB
-rwxr-xr-x
2026-08-11 11:38
install-plesk-plugin.sh
1.8
KB
-rwxr-xr-x
2026-08-11 11:38
installsupergrp.sh
991
B
-rwxr-xr-x
2026-08-11 11:38
libcagefs.py
7.61
KB
-rw-r--r--
2026-08-11 11:38
libcloudlinux.py
38.66
KB
-rw-r--r--
2026-08-11 11:38
libsupport.py
2.45
KB
-rw-r--r--
2026-08-11 11:38
node_wrapper
272
B
-rwxr-xr-x
2026-08-11 11:38
npm_wrapper
1.69
KB
-rwxr-xr-x
2026-08-11 11:38
plesk-cgi.sh
3.15
KB
-rwxr-xr-x
2026-08-11 11:38
plesk_nginx_php_sync.py
5.87
KB
-rw-r--r--
2026-08-11 11:38
python_wrapper
572
B
-rwxr-xr-x
2026-08-11 11:38
set_env_vars.py
4.57
KB
-rwxr-xr-x
2026-08-11 11:38
sync_locales.py
2.97
KB
-rwxr-xr-x
2026-08-11 11:38
ui_package_installer.py
4.93
KB
-rw-r--r--
2026-08-11 11:38
Save
Rename
#!/opt/cloudlinux/venv/bin/python3 -sbb # coding:utf-8 # Copyright © Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2019 All Rights Reserved # # Licensed under CLOUD LINUX LICENSE AGREEMENT # http://cloudlinux.com/docs/LICENSE.TXT from __future__ import print_function from __future__ import division from __future__ import absolute_import import sys from future.utils import iteritems from clcommon.clpwd import ClPwd from clselect.clselectctlnodejsuser import _create_environment from clselect.clselectexcept import ClSelectExcept from clselect.clselectnodejs import scan_node_versions from clselect.clselectnodejs.apps_manager import ApplicationsManager WRAPPERS_VERSION_FILE = '/usr/share/l.v.e-manager/utils/nodejs_selector_wrappers_version' # Increment when introducing incompatible changes to nodejs virtualenv LAST_WRAPPERS_VERSION = 1 def is_alt_nodejs_installed(): return scan_node_versions() != {} def get_wrappers_version(): """ Return the version of wrappers used in existing apps :rtype: int or None """ try: with open(WRAPPERS_VERSION_FILE, 'r') as f: version = f.read() except (IOError, OSError): return None else: try: return int(version) except ValueError: return None def set_wrappers_version(wrappers_version=LAST_WRAPPERS_VERSION): """ Save the last wrappers version introducing incompatibility :rtype: None """ try: with open(WRAPPERS_VERSION_FILE, 'w') as f: f.write("{}".format(wrappers_version)) except (IOError, OSError): pass def main(): if not is_alt_nodejs_installed(): sys.exit(0) current_version = get_wrappers_version() if current_version is not None and current_version >= LAST_WRAPPERS_VERSION: sys.exit(0) clpwd = ClPwd() clpwd.get_user_dict() users = clpwd.get_user_dict() apps_manager = ApplicationsManager() for user in users: try: user_config = apps_manager.get_user_config_data(user) except ClSelectExcept.WrongData: # Broken/missing per-user node-selector.json must not abort the # whole migration: this runs as root from rpm_post.sh, so one # poisoned user record would otherwise prevent # set_wrappers_version() from advancing the sentinel and the # next rpm_post run would re-hit the same record. continue # apps_manager.get_user_config_data() returns the raw json.loads() # result; the user owns ~/.cl.selector/node-selector.json so the # outer shape (must be a dict mapping approot -> {nodejs_version}) # is attacker-controlled. Skip entries that don't match. if not isinstance(user_config, dict): continue for approot, app_info in iteritems(user_config): if not isinstance(app_info, dict): continue nodejs_version = app_info.get('nodejs_version') if not nodejs_version: continue try: _create_environment(user, approot, nodejs_version, destroy_first=True) except (ClSelectExcept.NoSuchAlternativeVersion, ClSelectExcept.WrongData): # WrongData covers approot escaping the user home # (commons/lib/clselect/utils.py:get_abs_rel); without it, # a single '..'-style approot would abort migration for # every later user on the host. continue set_wrappers_version(LAST_WRAPPERS_VERSION) if __name__ == "__main__": main() sys.exit(0)