OXIESEC PANEL
- Current Dir:
/
/
opt
/
alt
/
php-xray
Server IP: 2a02:4780:11:1084:0:327f:3464:10
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
02/06/2025 12:21:18 PM
rwxr-xr-x
📄
cl-smart-advice-user
728 bytes
07/28/2025 04:37:34 PM
rwxr-xr-x
📄
cloudlinux-xray-user-manager
386 bytes
07/28/2025 04:37:34 PM
rwxr-xr-x
📁
php
-
07/28/2025 04:37:34 PM
rwxr-xr-x
📁
run
-
09/05/2025 09:39:22 AM
rwxr-xr-x
Editing: cl-smart-advice-user
Close
#!/opt/cloudlinux/venv/bin/python3 -Ibb # -*- 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 """ Main cl-smart-advice-user utility script """ import sys import json from xray import gettext as _ from xray.internal.clwpos_safe_imports import CLWPOS_AVAILABLE from xray.console_utils.run_user import run if not CLWPOS_AVAILABLE: error_message = _("Smart Advice is not available while AccelerateWP is not installed") print(json.dumps({ "result": error_message }), file=sys.stderr) sys.exit(0) if __name__ == '__main__': run(run_for='smart_advice')