Linux yavrix.internet-webhosting.com 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64
LiteSpeed
Server IP : 103.8.25.136 & Your IP : 216.73.216.129
Domains :
Cant Read [ /etc/named.conf ]
User : celfico1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
sbin /
Delete
Unzip
Name
Size
Permission
Date
Action
cagefs_enter_site
1.83
KB
-rwxr-xr-x
2026-04-17 12:11
cagefsctl-user
13.18
KB
-rwxr-xr-x
2026-04-17 12:11
chroot
32.47
KB
-rwxr-xr-x
2020-11-10 17:18
cloudlinux-selector
654
B
-rwxr-xr-x
2026-04-10 12:49
consoletype
6.95
KB
-rwxr-xr-x
2022-08-16 13:41
cracklib-check
7.04
KB
-rwxr-xr-x
2014-06-10 05:42
cracklib-format
246
B
-rwxr-xr-x
2014-06-10 05:42
cracklib-packer
11.06
KB
-rwxr-xr-x
2014-06-10 05:42
cracklib-unpacker
7.02
KB
-rwxr-xr-x
2014-06-10 05:42
create-cracklib-dict
990
B
-rwxr-xr-x
2014-06-10 05:42
exim
1.25
KB
-rwxr-xr-x
2026-05-01 17:34
faillock
15.02
KB
-rwxr-xr-x
2025-09-10 14:56
ip
459.59
KB
-rwxr-xr-x
2020-09-30 15:06
ldconfig
952.08
KB
-rwxr-xr-x
2026-04-16 14:09
lvdctl
5.75
KB
-rwxr-xr-x
2026-04-17 11:38
mkhomedir_helper
19.05
KB
-rwxr-xr-x
2025-09-10 14:56
pam_console_apply
39.69
KB
-rwxr-xr-x
2025-09-10 14:56
pam_tally2
15.05
KB
-rwxr-xr-x
2025-09-10 14:56
pam_timestamp_check
10.97
KB
-rwxr-xr-x
2025-09-10 14:56
pluginviewer
15.23
KB
-rwxr-xr-x
2022-02-25 07:00
proxyexec
19.82
KB
-r-xr-xr-x
2020-09-02 07:48
pwhistory_helper
15.44
KB
-rwxr-xr-x
2025-09-10 14:56
safe_finger
11.08
KB
-rwxr-xr-x
2014-06-10 04:41
saslauthd
92.59
KB
-rwxr-xr-x
2022-02-25 07:00
sasldblistusers2
19.26
KB
-rwxr-xr-x
2022-02-25 07:00
saslpasswd2
15.09
KB
-rwxr-xr-x
2022-02-25 07:00
sendmail
1.26
KB
-rwxr-xr-x
2026-05-01 17:34
snmpd
31.05
KB
-rwxr-xr-x
2024-01-29 07:00
snmptrapd
31.22
KB
-rwxr-xr-x
2024-01-29 07:00
tcpd
36.62
KB
-rwxr-xr-x
2014-06-10 04:41
tcpdmatch
40.83
KB
-rwxr-xr-x
2014-06-10 04:41
testsaslauthd
15.09
KB
-rwxr-xr-x
2022-02-25 07:00
tmpwatch
27.87
KB
-rwxr-xr-x
2019-06-09 09:42
try-from
23.47
KB
-rwxr-xr-x
2014-06-10 04:41
unix_chkpwd
35.43
KB
-rwxr-xr-x
2025-09-10 14:56
unix_update
35.42
KB
-rwx------
2025-09-10 14:56
Save
Rename
#!/opt/cloudlinux/venv/bin/python3 -sbb # -*- coding: utf-8 -*- # # Copyright © Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2025 All Rights Reserved # # Licensed under CLOUD LINUX LICENSE AGREEMENT # https://cloudlinux.com/docs/LICENCE.TXT # """ Execute a command inside CageFS for a site (document root or domain). This wrapper provides a command-line interface for executing commands within the isolated CageFS environment for a specific website. """ import argparse import os import sys from clcagefslib.webisolation import libenter def create_parser(): """ Create argument parser for cagefs_enter_site. Returns: argparse.ArgumentParser: Configured argument parser """ parser = argparse.ArgumentParser( # the command is named with _underscores_ to match # existing cagefs_enter wrapper from lvewrappers prog="cagefs_enter_site", description="Execute a command inside CageFS for a site (document root or domain)", ) parser.add_argument("site", type=str, help="Document root or domain") parser.add_argument( "command", type=str, nargs=argparse.REMAINDER, help="Command to execute" ) return parser def main(): """ Main entry point. Returns: int: Exit code """ parser = create_parser() args = parser.parse_args() if not args.command: parser.error("COMMAND is required") try: return libenter.enter_site(args.site, args.command) except ValueError as e: print(f"Error: {e}", file=sys.stderr) return 1 except KeyboardInterrupt: # Clean Ctrl+C exit without traceback (exit code 130 = SIGINT). return 130 if __name__ == "__main__": if os.geteuid() == 0: print("Error: This program can not be run as root", file=sys.stderr) sys.exit(1) sys.exit(main())