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 /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2026-09-04 11:42
cl-server-flags
[ DIR ]
drwxr-xr-x
2026-09-04 11:42
cl.nodejs
[ DIR ]
drwxr-xr-x
2026-09-04 11:56
cl.python
[ DIR ]
drwxr-xr-x
2026-09-04 12:16
commons
[ DIR ]
drwxr-xr-x
2026-08-11 11:38
cpanel
[ DIR ]
drwxr-xr-x
2026-09-04 11:42
directadmin
[ DIR ]
drwxr-xr-x
2026-08-11 11:38
hooks
[ DIR ]
drwxr-xr-x
2026-08-11 11:38
panelless-version
[ DIR ]
drwxr-xr-x
2026-08-11 11:38
plesk
[ DIR ]
drwxr-xr-x
2026-08-11 11:38
scriptlets
[ DIR ]
drwxr-xr-x
2026-09-04 11:42
tmp
[ DIR ]
drwxr-xr-x
2026-09-04 11:42
utils
[ DIR ]
drwxr-xr-x
2026-09-04 11:42
copy_directory.py
9.58
KB
-rw-r--r--
2026-08-11 11:38
crontab.py
6.67
KB
-rw-r--r--
2026-08-11 11:38
detect_edition_changes.py
2
KB
-rwxr-xr-x
2026-08-11 11:38
exec_command.py
4.13
KB
-rw-r--r--
2026-08-11 11:38
feature_manager.py
1.74
KB
-rw-r--r--
2026-08-11 11:38
install-lvemanager-plugin.py
64.06
KB
-rwxr-xr-x
2026-08-11 11:38
lvemanager-config.json
298
B
-rw-r--r--
2026-09-04 12:15
version
9
B
-rw-r--r--
2026-09-04 11:42
Save
Rename
# -*- coding: utf-8 -*- # Copyright © Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2021 All Rights Reserved # # Licensed under CLOUD LINUX LICENSE AGREEMENT # http://cloudlinux.com/docs/LICENSE.TXT from __future__ import absolute_import import os import re import json from exec_command import exec_command SOURCE_PATH = "/usr/share/l.v.e-manager/" FEATURES_PATH = '/usr/local/cpanel/whostmgr/addonfeatures/' def cpanel_fix_feature_manager(pathes_to_installs): """ Fix displaying of plugins in cPanel Feature Manager :param pathes_to_installs: list :return: None """ for path in pathes_to_installs: if os.path.exists(FEATURES_PATH): with open(SOURCE_PATH + path) as feature_file: features = json.load(feature_file) cpanel_fix_feature_files(features) exec_command(SOURCE_PATH + 'cpanel/utils/dynamicuictl.py --hide=enduserlve,cpu_and_concurrent_connection_usage') def cpanel_fix_feature_files(features): """ Fix feature files :param features: list :return: None """ for feature in features: feature_file = open(FEATURES_PATH + feature['feature'], 'w') feature_name = feature['name'] try: feature_name_fixed = re.search("\$LANG{'(.*)'}", feature_name).group(1) except AttributeError: feature_name_fixed = '' feature_file.write(feature['feature'] + ':' + feature_name_fixed) feature_file.close() def cpanel_remove_from_feature_list(features): """ Remove plugin from cPanel Feature List :param features: list :return: None """ for feature in features: feature_file = FEATURES_PATH + feature if os.path.isfile(feature_file): os.remove(feature_file)