Linux cpanel9.hostlab.net.tr 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 : 45.158.14.84 & Your IP : 216.73.217.7
Domains :
Cant Read [ /etc/named.conf ]
User :
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-05-18 16:24
cagefsctl-user
14.41
KB
-rwxr-xr-x
2026-05-18 16:24
chroot
32.47
KB
-rwxr-xr-x
2020-11-10 20:18
cloudlinux-selector
654
B
-rwxr-xr-x
2026-05-12 13:08
consoletype
6.95
KB
-rwxr-xr-x
2022-08-16 16:41
cracklib-check
7.04
KB
-rwxr-xr-x
2014-06-10 08:42
cracklib-format
246
B
-rwxr-xr-x
2014-06-10 08:42
cracklib-packer
11.06
KB
-rwxr-xr-x
2014-06-10 08:42
cracklib-unpacker
7.02
KB
-rwxr-xr-x
2014-06-10 08:42
create-cracklib-dict
990
B
-rwxr-xr-x
2014-06-10 08:42
exim
1.25
KB
-rwxr-xr-x
2026-09-10 19:24
faillock
15.02
KB
-rwxr-xr-x
2025-09-10 17:56
ip
459.59
KB
-rwxr-xr-x
2020-09-30 18:06
isolatectl
9.06
KB
-rwxr-xr-x
2026-05-20 20:27
ldconfig
952.08
KB
-rwxr-xr-x
2026-04-16 17:09
lvdctl
683
B
-rwxr-xr-x
2026-05-20 20:27
mkhomedir_helper
19.05
KB
-rwxr-xr-x
2025-09-10 17:56
pam_console_apply
39.69
KB
-rwxr-xr-x
2025-09-10 17:56
pam_tally2
15.05
KB
-rwxr-xr-x
2025-09-10 17:56
pam_timestamp_check
10.97
KB
-rwxr-xr-x
2025-09-10 17:56
pluginviewer
15.23
KB
-rwxr-xr-x
2022-02-25 10:00
proxyexec
19.82
KB
-r-xr-xr-x
2020-09-02 10:48
pwhistory_helper
15.44
KB
-rwxr-xr-x
2025-09-10 17:56
safe_finger
11.08
KB
-rwxr-xr-x
2014-06-10 07:41
saslauthd
92.59
KB
-rwxr-xr-x
2022-02-25 10:00
sasldblistusers2
19.26
KB
-rwxr-xr-x
2022-02-25 10:00
saslpasswd2
15.09
KB
-rwxr-xr-x
2022-02-25 10:00
sendmail
1.26
KB
-rwxr-xr-x
2026-09-10 19:24
snmpd
31.05
KB
-rwxr-xr-x
2024-01-29 10:00
snmptrapd
31.22
KB
-rwxr-xr-x
2024-01-29 10:00
tcpd
36.62
KB
-rwxr-xr-x
2014-06-10 07:41
tcpdmatch
40.83
KB
-rwxr-xr-x
2014-06-10 07:41
testsaslauthd
15.09
KB
-rwxr-xr-x
2022-02-25 10:00
tmpwatch
27.87
KB
-rwxr-xr-x
2019-06-09 12:42
try-from
23.47
KB
-rwxr-xr-x
2014-06-10 07:41
unix_chkpwd
35.43
KB
-rwxr-xr-x
2025-09-10 17:56
unix_update
35.42
KB
-rwx------
2025-09-10 17: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())